Eventhub fixes with Composite PKeys Support (#379) #10
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: Test Docker Images | |
on: | |
push: | |
branches: [testing] | |
pull_request: | |
branches: [testing] | |
jobs: | |
docker-build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
token: ${{ secrets.SUBMODULE_CHECKOUT }} | |
- uses: depot/setup-action@v1 | |
- name: Login to GitHub Container Registry | |
uses: docker/[email protected] | |
with: | |
registry: ghcr.io | |
username: ${{github.actor}} | |
password: ${{secrets.GITHUB_TOKEN}} | |
- name: Set Short Commit Hash | |
id: vars | |
run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" | |
- name: Build (optionally publish) PeerDB Test Image | |
uses: depot/build-push-action@v1 | |
with: | |
token: ${{ secrets.DEPOT_TOKEN }} | |
context: . | |
file: stacks/nexus.Dockerfile | |
push: ${{ github.ref == 'refs/heads/testing' }} | |
tags: | | |
ghcr.io/peerdb-io/peerdb-server:test-${{ steps.vars.outputs.sha_short }} | |
- name: Build (optionally publish) Flow API Test Image | |
uses: depot/build-push-action@v1 | |
with: | |
token: ${{ secrets.DEPOT_TOKEN }} | |
context: . | |
file: stacks/flow-api.Dockerfile | |
push: ${{ github.ref == 'refs/heads/testing' }} | |
tags: | | |
ghcr.io/peerdb-io/flow-api:test-${{ steps.vars.outputs.sha_short }} | |
- name: Build (optionally publish) Flow Worker Test Image | |
uses: depot/build-push-action@v1 | |
with: | |
token: ${{ secrets.DEPOT_TOKEN }} | |
context: . | |
file: stacks/flow-worker.Dockerfile | |
push: ${{ github.ref == 'refs/heads/testing' }} | |
tags: | | |
ghcr.io/peerdb-io/flow-worker:test-${{ steps.vars.outputs.sha_short }} | |
- name: Build (optionally publish) Flow Snapshot Worker Test Image | |
uses: depot/build-push-action@v1 | |
with: | |
token: ${{ secrets.DEPOT_TOKEN }} | |
context: . | |
file: stacks/flow-snapshot-worker.Dockerfile | |
push: ${{ github.ref == 'refs/heads/testing' }} | |
tags: | | |
ghcr.io/peerdb-io/flow-snapshot-worker:test-${{ steps.vars.outputs.sha_short }} |