Release #81
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: Release | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| tag: | |
| description: "Tag of the release (i.e. 0.1.0)" | |
| required: true | |
| jobs: | |
| push-to-ghcr: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Login to GHCR | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| # Set up Docker Buildx for multi-arch support | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| # Build and push multi-arch Docker image | |
| - name: Build and push Staking brain docker monorepo | |
| uses: docker/build-push-action@v3 | |
| with: | |
| file: Dockerfile | |
| push: true | |
| platforms: linux/amd64, linux/arm64 | |
| tags: ghcr.io/${{ github.repository_owner }}/staking-brain:${{ github.event.inputs.tag }} | |
| gh-release: | |
| runs-on: ubuntu-latest | |
| needs: push-to-ghcr | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Create Release | |
| id: create_release | |
| uses: actions/create-release@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| tag_name: ${{ github.event.inputs.tag }} | |
| release_name: Release v${{ github.event.inputs.tag }} | |
| draft: false | |
| prerelease: true |