Skip to content
Merged
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
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ jobs:
name: Release
needs: [lint, test]
runs-on: ubuntu-latest
concurrency:
group: release-${{ github.ref }}
cancel-in-progress: false
if: (github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'workflow_dispatch'
permissions:
contents: write
Expand All @@ -45,6 +48,11 @@ jobs:
- uses: actions/checkout@v6
with:
fetch-depth: 0
# FerrFlow runs with bot: true — it pushes via an App installation
# token from its OIDC exchange, not the checkout-persisted
# GITHUB_TOKEN. Persisting GITHUB_TOKEN would let it win over the bot
# token on push (github-actions[bot] can't bypass branch rules).
persist-credentials: false
- name: Record previous tag
id: prev-tag
run: echo "tag=$(git describe --tags --abbrev=0 2>/dev/null || echo '')" >> "$GITHUB_OUTPUT"
Expand Down
Loading