We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82de5bb commit a631820Copy full SHA for a631820
1 file changed
.github/workflows/release.yml
@@ -12,8 +12,14 @@ jobs:
12
publish:
13
permissions:
14
id-token: write # Required for authentication using OIDC
15
- uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1
16
-
+ runs-on: ubuntu-latest
+ steps:
17
+ - uses: actions/checkout@v3
18
+ - uses: dart-lang/setup-dart@v1
19
+ - name: Install dependencies
20
+ run: dart pub get
21
+ - name: Publish
22
+ run: dart pub publish --force
23
tag:
24
needs: publish
25
runs-on: ubuntu-latest
0 commit comments