chore: misc fixes #11
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: Build release Docker Images | |
| on: | |
| push: | |
| branches: | |
| - 'fraz/test-ymax-planner-build' | |
| jobs: | |
| docker-ymax: | |
| permissions: | |
| # allow issuing OIDC tokens for this workflow run | |
| id-token: write | |
| runs-on: 'depot-ubuntu-latest' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: depot/setup-action@v1 | |
| with: | |
| oidc: true # to set DEPOT_TOKEN for later steps | |
| - run: depot configure-docker | |
| - name: Log in to the Container registry | |
| uses: docker/login-action@v3 | |
| # see https://docs.github.com/en/actions/publishing-packages/publishing-docker-images | |
| with: | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| registry: ghcr.io | |
| - name: Build and Push ymax-planner | |
| uses: depot/build-push-action@v1 | |
| id: build | |
| with: | |
| file: services/ymax-planner/Dockerfile | |
| context: ./ | |
| platforms: ${{ env.DOCKER_PLATFORMS }} | |
| push: true | |
| tags: | | |
| ghcr.io/agoric/agoric-sdk-test:ymax-planner-test |