We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fecf172 commit b350a2cCopy full SHA for b350a2c
.github/workflows/release.yaml
@@ -39,11 +39,16 @@ jobs:
39
runs-on: ubuntu-latest
40
permissions:
41
contents: write
42
+ id-token: write # Required for authentication using OIDC
43
steps:
44
- name: Checkout
45
uses: actions/checkout@v4
46
with:
47
fetch-depth: 0
48
ref: ${{ needs.release-please.outputs.release_tag_name }}
49
- # TODO Configure release process once there's something to release
50
+ - uses: dart-lang/setup-dart@v1
51
+ - name: Install dependencies
52
+ run: dart pub get
53
+ - name: Publish
54
+ run: dart pub publish --force
0 commit comments