Skip to content

Commit

Permalink
Fix repeated secrets property on GitHub snippets (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
0x2b3bfa0 authored Jun 21, 2021
1 parent 3c67512 commit 054df20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@ jobs:
- name: deploy
shell: bash
env:
repo_token: { "${{ secrets.secrets.PERSONAL_ACCESS_TOKEN }}" }
repo_token: { "${{ secrets.PERSONAL_ACCESS_TOKEN }}" }
AWS_ACCESS_KEY_ID: { "${{ secrets.AWS_ACCESS_KEY_ID }}" }
AWS_SECRET_ACCESS_KEY: { "${{ secrets.AWS_SECRET_ACCESS_KEY }}" }
run: |
Expand Down Expand Up @@ -702,7 +702,7 @@ jobs:

- name: cml
env:
repo_token: { "${{ secrets.secrets.PERSONAL_ACCESS_TOKEN }}" }
repo_token: { "${{ secrets.PERSONAL_ACCESS_TOKEN }}" }
run: |
apt-get update -y
apt install imagemagick -y
Expand Down

0 comments on commit 054df20

Please sign in to comment.