Skip to content

Commit

Permalink
Add secrets to build workflow
Browse files Browse the repository at this point in the history
Included environment variables for `PUBLISH_TOKEN`, `CERTIFICATE_CHAIN`, `PRIVATE_KEY`, and `PRIVATE_KEY_PASSWORD` in the build workflow.
  • Loading branch information
pderakhshanfar committed Oct 11, 2024
1 parent 93c633e commit 3438494
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@ jobs:

# Set environment variables
- name: Export Properties
env:
PUBLISH_TOKEN: ${{ secrets.PUBLISH_TOKEN }}
CERTIFICATE_CHAIN: ${{ secrets.CERTIFICATE_CHAIN }}
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
PRIVATE_KEY_PASSWORD: ${{ secrets.PRIVATE_KEY_PASSWORD }}
id: properties
shell: bash
run: |
Expand Down

0 comments on commit 3438494

Please sign in to comment.