Skip to content

Commit

Permalink
last for today
Browse files Browse the repository at this point in the history
  • Loading branch information
SpookyJelly committed Aug 9, 2023
1 parent b1b15a5 commit a1fd00d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/npm_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
# target-branch: "main"
- name: set output
id: lastest_head
run: echo 'commit_sha=$(git rev-parse HEAD)' >> $GITHUB_OUTPUT
run: |
COMMIT_HASH=$(git rev-parse HEAD)
echo 'commit_sha=$COMMIT_HASH' >> $GITHUB_OUTPUT
# run: echo 'commit_sha=testing' >> $GITHUB_OUTPUT
outputs:
ref: ${{ steps.lastest_head.outputs.commit_sha }}
Expand All @@ -33,7 +35,6 @@ jobs:
- name: Prepare
run: |
echo "this is for Test ${{needs.bump_version.outputs.ref}}"
echo "how ?${{steps.bump_version.outputs.ref}}}}"
- name: Checkout
uses: actions/checkout@v3
# uses: actions/checkout@v2
Expand Down

0 comments on commit a1fd00d

Please sign in to comment.