Skip to content

Commit 40f055e

Browse files
chore: OIDC認証トークンのセットアップを追加し、ドライランを実行するステップを更新
1 parent 494132f commit 40f055e

1 file changed

Lines changed: 11 additions & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,15 @@ jobs:
2121
channel: stable
2222
cache: true
2323

24+
# OIDC 認証トークンをセット(これがないと「Allow access」で止まる)
25+
- uses: dart-lang/setup-dart@v1
26+
2427
- run: flutter --version
25-
- run: flutter pub publish --dry-run
26-
- run: flutter pub publish --force
28+
29+
- name: Dry run
30+
# Dryrun
31+
run: flutter pub publish --dry-run
32+
33+
- name: Publish
34+
# 対話なしで公開
35+
run: flutter pub publish --force

0 commit comments

Comments
 (0)