Skip to content
Closed
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/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
id-token: write
runs-on: ubuntu-latest
needs: [test, example]
if: github.event_name == 'release'
if: github.event_name == 'release' || startsWith(github.ref, 'refs/tags/')

steps:
- name: Checkout
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,8 @@ if (!report.passed) {
```

A GitHub Actions workflow for CI is included in the repository at `.github/workflows/test.yml`.
> **Note on OIDC Publishing:** The included CI workflow uses OIDC authentication (`permissions: id-token: write`) to publish to pub.dev. For this to work, you must enable automated publishing for your package via GitHub Actions in your package's admin settings on pub.dev. No `PUB_CREDENTIALS` secret is required!


---

Expand Down
Loading