Testing some more
Release / test_build (push) Failing after 50s
Details
Release / test_build (push) Failing after 50s
Details
parent
7ac5c0454e
commit
6a06e9a1f5
|
@ -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 }}
|
||||
|
|
Loading…
Reference in New Issue