Build Release #4
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 | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: 'Version to release (e.g. v1.18.7-beta1)' | |
| required: true | |
| branch: | |
| description: 'Branch to release from (e.g. main)' | |
| required: true | |
| default: 'main' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Build release | |
| env: | |
| REPO_URL: ${{ vars.REPO_URL }} | |
| UPLOAD: "no" | |
| run: | | |
| ./make-release ${{ github.event.inputs.branch }} ${{ github.event.inputs.version }} |