File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -41,12 +41,12 @@ jobs:
41
41
NODE_AUTH_TOKEN : ${{ secrets.NPM_AUTH_TOKEN }}
42
42
- name : Publish Tag
43
43
run : |
44
- node --eval "console.log(JSON.parse(require('fs').readFileSync('packages/launcher-core/ package.json').toString()).version)" > tag.log
44
+ node --eval "console.log(JSON.parse(require('fs').readFileSync('package.json').toString()).version)" > tag.log
45
45
git remote set-url origin "https://x-access-token:${GITHUB_TOKEN}@github.com/voxelum/minecraft-launcher-core-node.git"
46
46
git config user.name ci010
47
47
git config user.email cijhn@hotmail.com
48
- git tag -f @xmcl/minecraft-launcher-core@ $(cat tag.log)
49
- git push origin tag @xmcl/minecraft-launcher-core@ $(cat tag.log) -f
48
+ git tag -f $(cat tag.log)
49
+ git push origin tag $(cat tag.log) -f
50
50
env :
51
51
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
52
52
- name : Delete PR head branch
You can’t perform that action at this time.
0 commit comments