We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8de76ba commit 161490dCopy full SHA for 161490d
pkgs/native_synchronization/.github/workflows/publish.yaml
@@ -0,0 +1,17 @@
1
+# A CI configuration to auto-publish pub packages.
2
+
3
+name: Publish
4
5
+on:
6
+ pull_request:
7
+ branches: [ main ]
8
+ push:
9
+ tags: [ 'v[0-9]+.[0-9]+.[0-9]+' ]
10
11
+jobs:
12
+ publish:
13
+ if: ${{ github.repository_owner == 'dart-lang' }}
14
+ uses: dart-lang/ecosystem/.github/workflows/publish.yaml@main
15
+ permissions:
16
+ id-token: write # Required for authentication using OIDC
17
+ pull-requests: write # Required for writing the pull request note
0 commit comments