We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cb274b commit 3e1624dCopy full SHA for 3e1624d
.github/workflows/build-and-publish.yaml
@@ -19,14 +19,14 @@ jobs:
19
files: "package.json"
20
search-text: "\"version\": \"0.0.0\""
21
replacement-text: "\"version\": \"${{ github.event.release.tag_name }}\""
22
- - name: Export version as environment variable
23
- run: export THYME_VERSION=${{ github.event.release.tag_name }}
24
- name: Setup Node
25
uses: actions/setup-node@v4
26
with:
27
node-version: "22"
28
- run: npm ci
29
- run: npm run build
+ env:
+ THYME_VERSION: ${{ github.event.release.tag_name }}
30
- name: Attach binaries to release
31
uses: softprops/action-gh-release@v2
32
0 commit comments