File tree Expand file tree Collapse file tree 1 file changed +18
-4
lines changed
Expand file tree Collapse file tree 1 file changed +18
-4
lines changed Original file line number Diff line number Diff line change 11name : Run Release
22
33on :
4- workflow_dispatch : # Enables manual triggering from the Actions tab
4+ workflow_dispatch :
55 push :
66 branches :
77 - main
@@ -18,12 +18,19 @@ jobs:
1818 working-directory : firebase-dart-admin-auth-sdk
1919 runs-on : ubuntu-latest
2020 permissions :
21- contents : write # For release-please to create release commits and tags
22- pull-requests : write # For release-please to create PRs
21+ contents : write
22+ pull-requests : write
2323 steps :
2424 - name : Checkout repository
2525 uses : actions/checkout@v4
2626
27+ - name : Check current directory
28+ run : |
29+ echo "Current directory:"
30+ pwd
31+ echo "Contents:"
32+ ls -la
33+
2734 - name : Run release-please CLI
2835 run : |
2936 npx release-please release-pr \
@@ -44,11 +51,18 @@ jobs:
4451 runs-on : ubuntu-latest
4552 permissions :
4653 contents : write
47- id-token : write # Required for authentication using OIDC
54+ id-token : write
4855 steps :
4956 - name : Checkout repository
5057 uses : actions/checkout@v4
5158
59+ - name : Check current directory
60+ run : |
61+ echo "Current directory in dart-release job:"
62+ pwd
63+ echo "Contents:"
64+ ls -la
65+
5266 - name : Setup Dart
5367 uses : dart-lang/setup-dart@v1
5468
You can’t perform that action at this time.
0 commit comments