Release CLI #82
Workflow file for this run
This file contains 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
# This defines a workflow to build and release a new version of the aptos CLI. | |
# In order to trigger it go to the Actions Tab of the Repo, click "Release CLI" and then "Run Workflow". | |
name: "Release CLI" | |
on: | |
workflow_dispatch: | |
inputs: | |
release_version: | |
type: string | |
required: true | |
description: "The release version. E.g. `0.2.3`:" | |
source_git_ref_override: | |
type: string | |
required: false | |
description: "GIT_SHA_OVERRIDE: Use this to override the Git SHA1, branch name (e.g. devnet) or tag to build the binaries from. Defaults to the workflow Git REV, but can be different than that:" | |
dry_run: | |
type: boolean | |
required: false | |
default: true | |
description: "Dry run - If checked, the release will not be created" | |
jobs: | |
bump-homebrew-version-pr: | |
name: "Make PR to bump version in Homebrew" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: mislav/bump-homebrew-formula-action@v3 | |
with: | |
formula-name: aptos | |
tag-name: "${{ format('aptos-cli-v{0}', inputs.release_version) }}" | |
base-branch: master | |
create-pullrequest: true | |
commit-message: | | |
{{formulaName}} {{version}} | |
Created by https://github.com/mislav/bump-homebrew-formula-action | |
From CLI release run ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
env: | |
COMMITTER_TOKEN: ${{ secrets.APTOS_BOT_GH_PAT_APTOS_CORE_HOMEBREW_BUMPER }} |