Skip to content

Commit

Permalink
printed
Browse files Browse the repository at this point in the history
update to @v4
use ${{ github.ref_name }]
  • Loading branch information
pryrt committed Jan 17, 2024
1 parent 0ebf460 commit bc5b916
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/OnTag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Show meta-info
run: |
echo github event: ${{ toJson(github) }}
echo head message: ${{ github.event.head_commit.message }}
# echo ref name : ${{ github.event.ref_name }}
git tag
# github event: ${{ toJson(github) }}
# head message: ${{ github.event.head_commit.message }}
# ref name : ${{ github.ref_name }}
git tag -l ${{ github.ref_name }}
# end

0 comments on commit bc5b916

Please sign in to comment.