be compatible with podman-compose #2620
Workflow file for this run
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: | |
runner: [ubuntu-latest] | |
runs-on: ${{ matrix.runner }} | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- 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: Build (optionally publish) PeerDB Images | |
uses: depot/bake-action@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 |