build(deps): update gcr.io/distroless/static docker digest to 972618c… #799
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: Release(Docker) | |
| on: | |
| push: | |
| tags: | |
| - v* | |
| branches: | |
| - master | |
| jobs: | |
| docker: | |
| runs-on: ubuntu-latest | |
| env: | |
| IMAGE: "ghcr.io/${{ github.repository_owner }}/submit-patch" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: false | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: "true" | |
| - uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ github.token }} | |
| - uses: trim21/actions/setup-go@master | |
| - run: go build -o ./dist/submit-patch | |
| env: | |
| CGO_ENABLED: "0" | |
| - name: Docker metadata | |
| id: meta | |
| uses: docker/metadata-action@v5 | |
| with: | |
| images: ${{ env.IMAGE }} | |
| tags: | | |
| type=semver,pattern=v{{version}} | |
| type=ref,event=branch | |
| type=ref,event=branch,suffix=-{{ sha }} | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build Final Docker Image | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: ./ | |
| provenance: false | |
| push: true | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| github-token: ${{ github.token }} |