Skip to content

Commit

Permalink
ci(action): enhance GitHub Actions workflow with new job and env vari…
Browse files Browse the repository at this point in the history
…able

- Add a new job `testing07` to the GitHub Actions workflow
- Set and display an environment variable with special characters in the new job

Signed-off-by: appleboy <[email protected]>
  • Loading branch information
appleboy committed Dec 2, 2024
1 parent 1c1ad10 commit 2ffe561
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -504,3 +504,18 @@ jobs:
command_timeout: 30s
script: |
whoami
testing07:
name: some special character
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4

- name: Set Environment Variables
run: |
echo `PASS=3HUS$?8kLu)}` >> $GITHUB_ENV
- name: Show Environment Variables
run: |
echo $PASS

0 comments on commit 2ffe561

Please sign in to comment.