Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/finalize-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
)
path.write_text(body)
PY
gh release edit "$TAG" --repo "$GITHUB_REPOSITORY" --prerelease=false --notes-file "$BODY_FILE"
gh release edit "$TAG" --repo "$GITHUB_REPOSITORY" --prerelease=false --latest --notes-file "$BODY_FILE"
{
echo "## Release finalized"
echo "GitHub assets: published"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -389,9 +389,9 @@ jobs:
- uses: actions/download-artifact@v8
with:
name: formula-${{ github.ref_name }}
path: candidate
path: ${{ runner.temp }}/candidate
- name: Install, launch, and remove candidate formula
run: ./scripts/smoke-formula.sh candidate/microbridge.rb "${GITHUB_REF_NAME#v}" "${{ matrix.arch }}"
run: ./scripts/smoke-formula.sh "$RUNNER_TEMP/candidate/microbridge.rb" "${GITHUB_REF_NAME#v}" "${{ matrix.arch }}"

bump-formula:
name: open Homebrew formula PR
Expand All @@ -404,9 +404,9 @@ jobs:
- uses: actions/download-artifact@v8
with:
name: formula-${{ github.ref_name }}
path: candidate
path: ${{ runner.temp }}/candidate
- name: Use smoke-tested formula
run: cp candidate/microbridge.rb Formula/microbridge.rb
run: cp "$RUNNER_TEMP/candidate/microbridge.rb" Formula/microbridge.rb
- name: Open PR
id: formula-pr
uses: peter-evans/create-pull-request@v7
Expand Down
Loading