diff --git a/.forgejo/workflows/test-build.yaml b/.forgejo/workflows/test-build.yaml index 6ebd4f2..f6eba01 100644 --- a/.forgejo/workflows/test-build.yaml +++ b/.forgejo/workflows/test-build.yaml @@ -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 }}