Skip to content

Commit

Permalink
Fixed key extraction from secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
Tiger-Tom committed Nov 27, 2023
1 parent 89839d0 commit fc5ebd1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/update-manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
- name: "Explicitly install requirements"
run: "python3 -m pip install -r requirements.txt"
- name: "Extract key"
run: "echo ${{ secrets.MAN_KEY }} | base64 -d > ./key.pyk"
run: "echo $MAN_KEY | base64 -d > ./key.pyk"
env:
MAN_KEY: "${{ secrets.MAN_KEY }}"
- name: "Use ./devel/rsruntime-updatemanifest.sh"
run: "./devel/rsruntime-updatemanifest.sh 2>&1 /dev/null"
- name: "Remove key"
Expand Down

0 comments on commit fc5ebd1

Please sign in to comment.