Skip to content

Commit

Permalink
ci: enhance GitHub Actions with secret variable support
Browse files Browse the repository at this point in the history
- Add a step to pass secret variables in the shell within the GitHub Actions workflow

Signed-off-by: appleboy <appleboy.tw@gmail.com>
  • Loading branch information
appleboy committed Jul 20, 2024
1 parent eaeb069 commit 8688118
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,15 @@ jobs:
echo "$GITHUB_BASE_REF"
echo "$GITHUB_REF"
- name: pass secret variable in shell
uses: ./
with:
host: ${{ env.REMOTE_HOST }}
username: linuxserver.io
key: ${{ env.PRIVATE_KEY }}
port: 2222
script: cd ${{ secrets.PORT }}

- name: switch to root user
uses: ./
with:
Expand Down

0 comments on commit 8688118

Please sign in to comment.