This repository was archived by the owner on Mar 14, 2026. It is now read-only.
Update debian:bookworm-slim Docker digest to 98f4b71 (#40) #6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish Repo image | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| - v3 | |
| paths: | |
| - repo/** | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: false | |
| jobs: | |
| push_to_registry: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| name: Build and Push Docker image to Github Packages | |
| steps: | |
| - name: Check out repo | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Login to ghcr.io | |
| uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v2.2.0 | |
| with: | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| registry: ghcr.io | |
| - name: Build and push repo | |
| uses: docker/build-push-action@0a97817b6ade9f46837855d676c4cca3a2471fc9 # v4.2.1 | |
| with: | |
| context: repo | |
| pull: true | |
| push: true | |
| tags: | | |
| ghcr.io/codize-dev/piston/repo-builder:latest | |
| ghcr.io/codize-dev/piston/repo-builder:${{ github.sha }} |