Skip to content

Commit 43c1556

Browse files
committed
ci: fix
1 parent 31a372e commit 43c1556

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name: Deploy and Publish
77

88
on:
99
push:
10-
branches: [ '**' ]
10+
branches: [ master ]
1111

1212
# Allows you to run this workflow manually from the Actions tab
1313
workflow_dispatch:
@@ -22,10 +22,12 @@ jobs:
2222
- uses: actions/checkout@v2
2323
with:
2424
persist-credentials: false
25+
2526
- name: Setup Node.js
2627
uses: actions/setup-node@v1
2728
with:
2829
node-version: 14
30+
2931
- name: Install Semantic Release dependencies
3032
run: |
3133
sudo apt-get install bumpversion
@@ -36,11 +38,12 @@ jobs:
3638
npm install -g @semantic-release/github
3739
npm install -g @semantic-release/commit-analyzer
3840
npm install -g @semantic-release/release-notes-generator
41+
3942
- name: Publish to Git Releases and Tags
4043
env:
4144
GH_TOKEN: ${{ secrets.GH_TOKEN }}
4245
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
4346
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
44-
run: npx semantic-release --dry-run --branches gha_9926
47+
run: npx semantic-release # --verbosity=DEBUG --dry-run
4548

4649

0 commit comments

Comments
 (0)