Prepare Release #30
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: Prepare Release | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: "Version to bump to without the v[...] prefix (e.g. 1.0.0-rc.5)" | |
| required: true | |
| type: string | |
| permissions: | |
| contents: write | |
| jobs: | |
| prepare-release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9 # v1 | |
| with: | |
| toolchain: stable | |
| - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 | |
| with: | |
| node-version: "24" | |
| registry-url: "https://registry.npmjs.org" | |
| package-manager-cache: false | |
| - name: Enable corepack (yarn) | |
| run: corepack enable | |
| # This is not great, but as this does not happen in the actual release actions, | |
| # the worst that could happen is that this sneaks something in the PR diff. | |
| - name: Install Solana CLI | |
| run: | | |
| set -xeou pipefail | |
| sh -c "$(curl -sSfL https://release.anza.xyz/stable/install)" | |
| echo "$HOME/.local/share/solana/install/active_release/bin" >> "$GITHUB_PATH" | |
| # This is not great, but as this does not happen in the actual release actions, | |
| # the worst that could happen is that this sneaks something in the PR diff. | |
| - name: Install Surfpool | |
| run: | | |
| curl -sL https://run.surfpool.run/ | bash | |
| echo "$HOME/.local/bin" >> $GITHUB_PATH | |
| - name: Install cargo-release | |
| run: cargo install cargo-release --version 1.1.1 --locked | |
| - name: Bump version | |
| env: | |
| VERSION: ${{ inputs.version }} | |
| run: | | |
| set -xeou pipefail | |
| # required for tests | |
| solana-keygen new --no-bip39-passphrase | |
| ./setup-tests.sh | |
| ./bump-version.sh "$VERSION" | |
| # I would love to automatically create a PR here, but GitHub does not allow triggering CI jobs | |
| # on automatically created PRs to prevent recursion | |
| - name: Create release branch | |
| env: | |
| VERSION: ${{ inputs.version }} | |
| run: | | |
| set -xeou pipefail | |
| BRANCH="release/v$VERSION" | |
| git config user.name "github-actions[bot]" | |
| git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
| git checkout -b "$BRANCH" | |
| git add -A | |
| git commit -m "v$VERSION" | |
| git push --set-upstream origin "$BRANCH" |