on: push: paths: - containers/deployer/** - .forgejo/workflows/build-deployer.yaml jobs: build-deployer: runs-on: docker container: image: library/docker:dind steps: - run: apk add --no-cache nodejs git - name: login to container registry run: echo "${{ secrets.DEPLOY_TOKEN }}" | docker login --username ${{ secrets.DEPLOY_USER }} --password-stdin git.janky.solutions - name: build container image uses: docker/build-push-action@v6 with: file: Containerfile context: "{{defaultContext}}:containers/deployer" tags: git.janky.solutions/jankysolutions/infra/deployer:latest platforms: linux/amd64 push: ${{ github.ref == 'refs/heads/main' }}