We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20340c6 commit c4aab32Copy full SHA for c4aab32
‎.github/workflows/tag-publish.yml
@@ -36,6 +36,7 @@ jobs:
36
runs-on: ubuntu-latest
37
env:
38
RELEASE_CONTEXT: ${{ toJson(github.event.release) }}
39
+
40
steps:
41
- name: Log Tag Name
42
run: |
@@ -47,6 +48,8 @@ jobs:
47
48
echo "event asset dl is:" ${{ github.event.release.assets[0].browser_download_url }}
49
echo "event asset dl type is:" ${{ github.event.release.assets[0].content_type }}
50
echo "$RELEASE_CONTEXT"
51
+ GIT_HASH_SHORT=$(git rev-parse --short "$GITHUB_SHA")
52
+ echo "GIT_HASH_SHORT $GIT_HASH_SHORT"
53
54
onlyonmain:
55
name: Publish stable packages
@@ -56,3 +59,4 @@ jobs:
56
59
- name: Publish stable packages
57
60
58
61
echo "We are running on: " ${{github.event.release.target_commitish}}
62
+ npx find-versions-cli ${{ github.event.release.tag_name }}
0 commit comments