Skip to content

Commit fd105ee

Browse files
Merge pull request #170 from contentstack/staging
SRE issue fix
2 parents bd35ecc + adf3839 commit fd105ee

File tree

5 files changed

+7145
-6399
lines changed

5 files changed

+7145
-6399
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup Node.js
1616
uses: actions/setup-node@v4
1717
with:
18-
node-version: "22.x"
18+
node-version: '22.x'
1919
- name: Install dependencies
2020
run: npm install
2121
- name: Build
@@ -38,7 +38,7 @@ jobs:
3838
- name: Setup Node.js
3939
uses: actions/setup-node@v4
4040
with:
41-
node-version: "22.x"
41+
node-version: '22.x'
4242
- name: Install dependencies
4343
run: npm install
4444
- name: Download dist
@@ -58,11 +58,12 @@ jobs:
5858
id: release-plugin
5959
uses: JS-DevTools/npm-publish@v3
6060
with:
61-
token: ${{ secrets.NPM_TOKEN }}
61+
token: "${{ secrets.NPM_TOKEN }}"
6262
strategy: upgrade
6363
- name: github-release
6464
if: steps.update_tag.outputs.tagname
6565
id: github-release
6666
env:
6767
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
68-
run: gh release create v${{ steps.release-plugin.outputs.version }} --title "Release ${{ steps.release-plugin.outputs.version }}" --generate-notes
68+
VERSION: ${{ steps.release-plugin.outputs.version }}
69+
run: gh release create v"$VERSION" --title "Release $VERSION" --generate-notes

0 commit comments

Comments
 (0)