Skip to content

Commit da7f11d

Browse files
committed
fix deploy.ymal secrets
1 parent 7e1012f commit da7f11d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,16 @@ jobs:
4545
echo "CLASPRC_JSON_FILE=$(tr -d '\n\r' < ~/.clasprc.json)" >> $GITHUB_ENV
4646
4747
- name: Update CLASPRC_JSON
48-
if: env.CLASPRC_JSON_FILE != ${{ secrets.REPO_ACCESS_TOKEN }}
48+
if: env.CLASPRC_JSON_FILE != ${{secrets.REPO_ACCESS_TOKEN }}
4949
env:
50-
GH_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
50+
GH_TOKEN: ${{secrets.REPO_ACCESS_TOKEN }}
5151
run: |
52-
echo "${{ env.CLASPRC_JSON_FILE }}" | gh secret set CLASPRC_JSON --repo ${{ github.repository }}
52+
echo "${{env.CLASPRC_JSON_FILE }}" | gh secret set CLASPRC_JSON --repo ${{github.repository }}
5353
5454
#RUN CLASP PUSH SCRIPT
5555
- name: Make clasp_push.sh executable
5656
run: chmod +x ./.github/scripts/clasp_push.sh
5757

5858
- name: Run clasp_push.sh
5959
id: run-clasp-push
60-
run: ./.github/scripts/clasp_push.sh ${{ steps.changed-files.outputs.all_changed_files }}
60+
run: ./.github/scripts/clasp_push.sh ${{steps.changed-files.outputs.all_changed_files }}

0 commit comments

Comments
 (0)