Skip to content

Commit 3cddbc9

Browse files
authored
Merge pull request #39 from SimplyEdit/GovertDev
some renaming for clarity
2 parents f72fe7a + 9657ed9 commit 3cddbc9

1 file changed

Lines changed: 10 additions & 5 deletions

File tree

.github/workflows/publish.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111
contents: write
1212

1313
jobs:
14-
build_on_linux:
14+
publish_for_linux:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v5
@@ -22,8 +22,9 @@ jobs:
2222
run: npm install
2323
- name: publish
2424
run: npm run publish
25-
26-
build_on_mac:
25+
env:
26+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27+
publish_for_mac:
2728
runs-on: macos-latest
2829
steps:
2930
- uses: actions/checkout@v5
@@ -34,8 +35,10 @@ jobs:
3435
run: npm install
3536
- name: publish
3637
run: npm run publish
38+
env:
39+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3740

38-
build_on_win:
41+
publish_for_win:
3942
runs-on: windows-latest
4043
steps:
4144
- uses: actions/checkout@v5
@@ -45,4 +48,6 @@ jobs:
4548
- name: install dependencies
4649
run: npm install
4750
- name: publish
48-
run: npm run publish
51+
run: npm run publish
52+
env:
53+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)