chore: release alpha.8 #1
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: cd | |
| on: | |
| push: | |
| tags: | |
| - "[v]?[0-9]+.[0-9]+.[0-9]+*" | |
| env: | |
| CONTAINER_REGISTRY: ghcr.io | |
| jobs: | |
| build_and_publish_notary_server_image: | |
| name: Build and publish notary server's image | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - name: Wait for integration test workflow to succeed | |
| uses: lewagon/[email protected] | |
| with: | |
| ref: ${{ github.ref }} | |
| # More details [here](https://github.com/lewagon/wait-on-check-action#check-name) | |
| check-name: 'Run tests release build' | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| # How frequent (in seconds) this job will call GitHub API to check the status of the job specified at 'check-name' | |
| wait-interval: 60 | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Log in to the Container registry | |
| uses: docker/login-action@v2 | |
| with: | |
| registry: ${{ env.CONTAINER_REGISTRY }} | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Extract metadata (tags, labels) for Docker image of notary server | |
| id: meta-notary-server | |
| uses: docker/metadata-action@v4 | |
| with: | |
| images: ${{ env.CONTAINER_REGISTRY }}/${{ github.repository }}/notary-server | |
| - name: Build and push Docker image of notary server | |
| uses: docker/build-push-action@v4 | |
| with: | |
| context: . | |
| push: true | |
| tags: ${{ steps.meta-notary-server.outputs.tags }} | |
| labels: ${{ steps.meta-notary-server.outputs.labels }} | |
| file: ./crates/notary/server/notary-server.Dockerfile |