Skip to content

Commit 940188c

Browse files
committed
Fix for the package release
1 parent 00730e3 commit 940188c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release_upload.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ jobs:
3030
run: npm set //npm.pkg.github.com/:_authToken ${{ secrets.GITHUB_TOKEN }}
3131
- name: Npm registry authentication
3232
run: npm set //registry.npmjs.org/:_authToken ${{secrets.NPMJS_AUTOMATION}}
33-
- name: Update the package,json
33+
- name: Update the package json
3434
run: |
3535
sed -i "s|\"version\": \"[^\"]*\"|\"version\": \"${{ github.event.release.tag_name }}\"|" package.json
3636
git config user.email "38@teragrep.com"
3737
git config user.name "spidermanja"
3838
git add .
3939
git commit -am "Updated the tag version ${{ github.event.release.tag_name }}"
40-
git push origin HEAD:main
40+
git push origin HEAD:automation
4141
- name: Publish packages
4242
run: npm publish
4343

0 commit comments

Comments
 (0)