Skip to content

Commit 61d8f83

Browse files
committed
-fix publish-packages.yaml: added continue on error
1 parent 6d39bd4 commit 61d8f83

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/publish-packages.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Node.js CI/CD
1+
name: publishing packages CI/CD
22

33
on:
44
push:
@@ -31,20 +31,24 @@ jobs:
3131

3232
- name: "Publishing @lafka/types"
3333
run: cd packages/types && npm publish --access public
34+
continue-on-error: true
3435
env:
3536
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
3637

3738
- name: "Publishing @lafka/rights"
3839
run: cd packages/rights && npm publish --access public
40+
continue-on-error: true
3941
env:
4042
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4143

4244
- name: "Publishing @lafka/frapi"
4345
run: cd packages/frapi && npm publish --access public
46+
continue-on-error: true
4447
env:
4548
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4649

4750
- name: "Publishing @lafka/database"
4851
run: cd packages/database && npm publish --access public
52+
continue-on-error: true
4953
env:
5054
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)