Skip to content

Commit

Permalink
💚 Fix CI publish credentials (#421)
Browse files Browse the repository at this point in the history
  • Loading branch information
techouse committed May 14, 2023
1 parent 83f8c25 commit 64bd220
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- id: credentials
run: |
mkdir -p $XDG_CONFIG_HOME/dart
echo '${{ secrets.PUB_CREDENTIALS }}' > "$XDG_CONFIG_HOME/dart/pub-credentials.json"
echo '${{ secrets.CREDENTIAL_JSON }}' > "$XDG_CONFIG_HOME/dart/pub-credentials.json"
- id: publish
run: bash tool/publish.sh chopper
publish_chopper_generator:
Expand All @@ -39,7 +39,7 @@ jobs:
- id: credentials
run: |
mkdir -p $XDG_CONFIG_HOME/dart
echo '${{ secrets.PUB_CREDENTIALS }}' > "$XDG_CONFIG_HOME/dart/pub-credentials.json"
echo '${{ secrets.CREDENTIAL_JSON }}' > "$XDG_CONFIG_HOME/dart/pub-credentials.json"
- id: publish
run: bash tool/publish.sh chopper_generator
publish_chopper_built_value:
Expand All @@ -54,6 +54,6 @@ jobs:
- id: credentials
run: |
mkdir -p $XDG_CONFIG_HOME/dart
echo '${{ secrets.PUB_CREDENTIALS }}' > "$XDG_CONFIG_HOME/dart/pub-credentials.json"
echo '${{ secrets.CREDENTIAL_JSON }}' > "$XDG_CONFIG_HOME/dart/pub-credentials.json"
- id: publish
run: bash tool/publish.sh chopper_built_value

0 comments on commit 64bd220

Please sign in to comment.