diff --git a/.gitea/workflows/gitea-actions-demo.yaml b/.gitea/workflows/gitea-actions-demo.yaml index 3f516c6..227d1c8 100644 --- a/.gitea/workflows/gitea-actions-demo.yaml +++ b/.gitea/workflows/gitea-actions-demo.yaml @@ -20,11 +20,10 @@ jobs: run: | ls ${{ gitea.workspace }} - run: echo "🍏 This job's status is ${{ job.status }}." - - name: ls in other directory - working-directory: context - run: ls - - run: ansible-builder create - - run: ls context - - name: build container - working-directory: context - run: docker buildx build . --tag=git.hyperon.be/bram/ultimate-ee --no-cache --push --platform=linux/amd64 + - name: build and push docker image + uses: https://github.com/docker/build-push-action@v5 + with: + context: context + file: ./Containerfile + push: true + tags: git.hyperon.be/bram/ultimate-eee