booleans are hard, mucked around until I found an expression that mak… #265
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: Customer Docker images | |
on: | |
push: | |
branches: | |
- 'customer-*' | |
pull_request: | |
branches: | |
- 'customer-*' | |
jobs: | |
docker-build: | |
strategy: | |
matrix: | |
runner: [ubuntu-latest] | |
runs-on: ${{ matrix.runner }} | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: bufbuild/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- run: buf generate protos | |
- uses: depot/setup-action@v1 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@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: extract branch name suffix for customer | |
id: branch | |
run: | | |
echo "branch=$(echo $GITHUB_REF | sed -e 's/.*customer-//')" >> $GITHUB_OUTPUT | |
- name: Build (optionally publish) PeerDB Images | |
uses: depot/bake-action@v1 | |
with: | |
token: ${{ secrets.DEPOT_TOKEN }} | |
files: ./docker-bake.hcl | |
push: ${{ startsWith(github.ref, 'refs/heads/customer-') }} | |
env: | |
SHA_SHORT: ${{ steps.branch.outputs.branch }}-${{ steps.vars.outputs.sha_short }} | |
TAG: latest-${{ steps.branch.outputs.branch }} |