Testing some more
Release / test_build (push) Failing after 50s Details

Gertjan Krol 2023-09-01 20:52:10 +00:00
parent 7ac5c0454e
commit 6a06e9a1f5
1 changed files with 9 additions and 5 deletions

View File

@ -7,13 +7,17 @@ on:
jobs:
test_build:
runs-on: ubuntu-latest
container: docker:dind
steps:
- name: Install dependencies # not present in `docker` container
run: apk add --no-cache git nodejs
# - 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 container
run: docker build . -t toolkit-test:${{ github.ref_name }}
- name: Build and push
uses: actions/docker-build-push@v4
with:
push: true
tags: toolkit-test:${{ github.ref_name }}
# - name: Build container
# run: docker build . -t toolkit-test:${{ github.ref_name }}
- name: Inspect image
run: docker image inspect toolkit-test:${{ github.ref_name }}