We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa04f0f commit 70f3d3cCopy full SHA for 70f3d3c
.github/workflows/canary_release.yml
@@ -55,6 +55,7 @@ jobs:
55
run: yarn build
56
57
- name: Bump version with timestamp and canary tag
58
+ id: publish
59
run: |
60
TIMESTAMP=$(date +"%Y%m%d%H%M%S")
61
NEW_VERSION=$(npm version prerelease --preid=canary.$TIMESTAMP --no-git-tag-version)
@@ -70,9 +71,9 @@ jobs:
70
71
access: public
72
73
- name: Create comment with canary version
- uses: peter-evans/create-or-update-comment@v4
74
+ uses: mshick/add-pr-comment@v2
75
with:
- body: |
76
+ message: |
77
Canary version published: ${{ steps.publish.outputs.version }}
78
```sh
79
yarn add @qoretechnologies/reqraft@${{ steps.publish.outputs.version }}
0 commit comments