API docker publish staging #2
Workflow file for this run
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: API docker publish staging | |
| description: Publish a staging version of the API on Docker Hub | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| compute-staging-version: | |
| uses: ./.github/workflows/reusable-compute-staging-version.yml | |
| with: | |
| working-directory: api | |
| docker-publish: | |
| needs: compute-staging-version | |
| uses: ./.github/workflows/reusable-api-docker.yml | |
| with: | |
| tag: ${{ needs.compute-staging-version.outputs.version }} | |
| secrets: | |
| docker-username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| docker-password: ${{ secrets.DOCKERHUB_PAT }} |