Skip to content

Commit 2ffe561

Browse files
committed
ci(action): enhance GitHub Actions workflow with new job and env variable
- 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]>
1 parent 1c1ad10 commit 2ffe561

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/main.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -504,3 +504,18 @@ jobs:
504504
command_timeout: 30s
505505
script: |
506506
whoami
507+
508+
testing07:
509+
name: some special character
510+
runs-on: ubuntu-latest
511+
steps:
512+
- name: checkout
513+
uses: actions/checkout@v4
514+
515+
- name: Set Environment Variables
516+
run: |
517+
echo `PASS=3HUS$?8kLu)}` >> $GITHUB_ENV
518+
519+
- name: Show Environment Variables
520+
run: |
521+
echo $PASS

0 commit comments

Comments
 (0)