Introduce Completed flow status (#2274) #8205
This file contains 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: Dev Docker Images | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
docker-build: | |
strategy: | |
matrix: | |
# ubuntu-latest leverages larger GH runner pool & completes in ~30s instead of ~3m | |
runner: [ubuntu-latest] | |
runs-on: ${{ matrix.runner }} | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: generate or hydrate protos | |
uses: ./.github/actions/genprotos | |
- uses: depot/setup-action@b0b1ea4f69e92ebf5dea3f8713a1b0c37b2126a5 # v1 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3 | |
with: | |
registry: ghcr.io | |
username: ${{github.actor}} | |
password: ${{secrets.GITHUB_TOKEN}} | |
- name: Set Short Commit Hash | |
id: vars | |
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
- name: Build (optionally publish) PeerDB Images | |
uses: depot/bake-action@143e50b965398f1f5dc8463be7dde6f62b9e9c21 # v1 | |
with: | |
token: ${{ secrets.DEPOT_TOKEN }} | |
files: ./docker-bake.hcl | |
push: ${{ github.ref == 'refs/heads/main' }} | |
env: | |
SHA_SHORT: dev-${{ steps.vars.outputs.sha_short }} | |
TAG: latest-dev |