Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lilyLuLiu authored Jul 3, 2024
1 parent 74ecd00 commit c478bc4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v4
- name: get tag
run: echo ${{ github.event.release.tag_name }}
shell: bash
env:
TAG_CONTEXT: ${{ toJson(github.event.release.tag_name) }}
run: echo "$TAG_CONTEXT"
- name: write script
run: |
cat <<EOF > build-qe-images.sh
Expand All @@ -36,7 +37,7 @@ jobs:
shell: bash
- name: run script
run: |
./build-qe-images.sh ${{ github.event.release.tag_name }}
./build-qe-images.sh "$TAG_CONTEXT"
shell: bash


0 comments on commit c478bc4

Please sign in to comment.