20 lines
519 B
YAML
20 lines
519 B
YAML
|
name: Release
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- '*'
|
||
|
|
||
|
jobs:
|
||
|
test_build:
|
||
|
runs-on: ubuntu-latest
|
||
|
container: docker:latest
|
||
|
steps:
|
||
|
- name: Install dependencies # not present in `docker` container
|
||
|
run: apk add --no-cache git nodejs
|
||
|
- name: Check out repository
|
||
|
uses: actions/checkout@v3
|
||
|
- name: Build containers
|
||
|
run: docker build . -t toolkit-test:${{ github.ref_name }}
|
||
|
- name: Inspect image
|
||
|
run: docker image inspect toolkit-test:${{ github.ref_name }}
|