Release #56
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
name: Release | |
on: | |
push: | |
tags: | |
- v[0-9]+.[0-9]+.[0-9]+ | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: The tag to manually run a deploy for. (example tag `v1.2.3`) | |
required: true | |
prerelease: | |
description: | | |
Is this for a prerelease? | |
(for internal testing, not announced nor published to our brew tap) | |
(example tag `v1.2.3-beta.0`) | |
type: boolean | |
default: false | |
required: true | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
org-check: | |
name: Check GitHub Organization | |
if: ${{ github.repository_owner == 'pantsbuild' }} | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Noop | |
run: "true" | |
determine-tag: | |
name: Determine the release tag to operate against. | |
needs: org-check | |
runs-on: ubuntu-22.04 | |
outputs: | |
release-tag: ${{ steps.determine-tag.outputs.release-tag }} | |
release-version: ${{ steps.determine-tag.outputs.release-version }} | |
prerelease: ${{ steps.determine-tag.outputs.prerelease }} | |
steps: | |
- name: Determine Tag | |
id: determine-tag | |
run: | | |
if [[ -n "${{ github.event.inputs.tag }}" ]]; then | |
RELEASE_TAG=${{ github.event.inputs.tag }} | |
PRERELEASE=${{ github.event.inputs.prerelease }} | |
else | |
RELEASE_TAG=${GITHUB_REF#refs/tags/} | |
PRERELEASE=false | |
fi | |
if [[ "${RELEASE_TAG}" =~ ^v[0-9]+.[0-9]+.[0-9]+$ ]] || [[ "${PRERELEASE}" == true ]]; then | |
echo "release-tag=${RELEASE_TAG}" >> $GITHUB_OUTPUT | |
echo "release-version=${RELEASE_TAG#v}" >> $GITHUB_OUTPUT | |
echo "prerelease=${PRERELEASE}" >> $GITHUB_OUTPUT | |
else | |
echo "::error::Release tag '${RELEASE_TAG}' must match 'v\d+.\d+.\d+' when not doing a pre-release." | |
exit 1 | |
fi | |
github-release: | |
name: (${{ matrix.name }}) Create Github Release | |
needs: determine-tag | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-22.04 | |
name: ubuntu-22.04 | |
- os: [runs-on, runner=4cpu-linux-arm64, image=ubuntu22-full-arm64-python3.7-3.13, "run-id=${{ github.run_id }}"] | |
name: linux-arm64 | |
- os: macOS-10.15-X64 | |
name: macOS-10.15-X64 | |
- os: macOS-11-ARM64 | |
name: macOS-11-ARM64 | |
environment: Release | |
steps: | |
- name: Checkout scie-pants ${{ needs.determine-tag.outputs.release-tag }} | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ needs.determine-tag.outputs.release-tag }} | |
- name: Package scie-pants ${{ needs.determine-tag.outputs.release-tag }} binary | |
if: ${{ matrix.os != 'ubuntu-22.04' && matrix.name != 'linux-arm64' }} | |
run: cargo run -p package -- --dest-dir dist/ scie | |
- name: Package scie-pants ${{ needs.determine-tag.outputs.release-tag }} binary | |
if: ${{ matrix.os == 'ubuntu-22.04' || matrix.name == 'linux-arm64' }} | |
run: | | |
cargo run -p package -- --dest-dir dist/ tools | |
docker run --rm \ | |
-v $PWD:/code \ | |
-w /code \ | |
rust:1.76.0-alpine3.19 \ | |
sh -c ' | |
apk add cmake make musl-dev perl && \ | |
cargo run -p package -- --dest-dir dist/ scie-pants | |
' | |
cargo run -p package -- --dest-dir dist/ scie \ | |
--scie-pants dist/scie-pants --tools-pex dist/tools.pex | |
# Build up a draft release with the artifacts from each of these jobs: | |
- name: Create ${{ needs.determine-tag.outputs.release-tag }} Release | |
# Need to pull in https://github.com/softprops/action-gh-release/pull/316 to work-around | |
# double-release-creation that happens when attempting to update a draft release to | |
# not-draft. | |
uses: huonw/action-gh-release@55ec297e11bf84ff0f5893a84ea987d93489920c # v2.2.0 + https://github.com/softprops/action-gh-release/pull/316 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ needs.determine-tag.outputs.release-tag }} | |
name: scie-pants ${{ needs.determine-tag.outputs.release-version }} | |
draft: true | |
# placeholder body to help someone track down why a release is still in draft: | |
body: "Release job in progress: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" | |
files: dist/scie-pants-* | |
fail_on_unmatched_files: true | |
publish-announce-release: | |
name: Publish and Announce Release | |
needs: | |
- determine-tag | |
- github-release | |
runs-on: ubuntu-22.04 | |
steps: | |
# Now, do the human-facing prep on the release (changelog etc.), and publish it | |
- name: Checkout scie-pants ${{ needs.determine-tag.outputs.release-tag }} | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ needs.determine-tag.outputs.release-tag }} | |
- name: Prepare Changelog | |
id: prepare-changelog | |
uses: a-scie/actions/changelog@v1.5 | |
with: | |
changelog-file: ${{ github.workspace }}/CHANGES.md | |
version: ${{ needs.determine-tag.outputs.release-version }} | |
setup-python: true | |
- name: Publish ${{ needs.determine-tag.outputs.release-tag }} Release | |
# See above for discussion: | |
uses: huonw/action-gh-release@55ec297e11bf84ff0f5893a84ea987d93489920c # v2.2.0 + https://github.com/softprops/action-gh-release/pull/316 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ needs.determine-tag.outputs.release-tag }} | |
name: scie-pants ${{ needs.determine-tag.outputs.release-version }} | |
body_path: ${{ steps.prepare-changelog.outputs.changelog-file }} | |
draft: false | |
prerelease: ${{ needs.determine-tag.outputs.prerelease }} | |
discussion_category_name: Announcements | |
# Announce the release! Yay | |
- name: Post Release Announcement to Pants Slack `#announce` | |
if: ${{ needs.determine-tag.outputs.prerelease != 'true' }} | |
id: slack | |
uses: slackapi/slack-github-action@v1.23.0 | |
with: | |
channel-id: "C18RRR4JK" | |
# N.B.: You can muck with the JSON blob and see the results rendered here: | |
# https://app.slack.com/block-kit-builder | |
payload: | | |
{ | |
"blocks": [ | |
{ | |
"type": "section", | |
"text": { | |
"type": "mrkdwn", | |
"text": "The `pants` launcher binary (scie-pants) ${{ needs.determine-tag.outputs.release-tag }} is released:\n* https://github.com/pantsbuild/scie-pants/releases/tag/${{ needs.determine-tag.outputs.release-tag }}\n* https://www.pantsbuild.org/docs/installation" | |
} | |
} | |
] | |
} | |
env: | |
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} | |
update-homebrew-tap: | |
name: Update pantsbuild/homebrew-tap | |
needs: | |
- determine-tag | |
- github-release | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Bump `scie-pants` version in Casks/pants.rb to ${{ needs.determine-tag.outputs.release-tag }} | |
if: ${{ needs.determine-tag.outputs.prerelease != 'true' }} | |
uses: actions/github-script@v6 | |
with: | |
github-token: ${{ secrets.TAP_TOKEN }} | |
# Docs: https://octokit.github.io/rest.js/v19#actions-create-workflow-dispatch | |
script: | | |
await github.rest.actions.createWorkflowDispatch({ | |
owner: 'pantsbuild', | |
repo: 'homebrew-tap', | |
workflow_id: 'release.yml', | |
ref: 'main', | |
inputs: { | |
tag: '${{ needs.determine-tag.outputs.release-tag }}' | |
} | |
}) |