We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 621bcb2 commit becd006Copy full SHA for becd006
.github/workflows/continuous-integration.yml
@@ -11,6 +11,7 @@ permissions:
11
jobs:
12
lint:
13
runs-on: ubuntu-latest
14
+ continue-on-error: true
15
steps:
16
- uses: actions/checkout@v4
17
- uses: actions/setup-node@v4
@@ -48,3 +49,21 @@ jobs:
48
49
with:
50
name: build
51
path: dist/netzgrafik-frontend/
52
+
53
+ publish:
54
+ runs-on: ubuntu-latest
55
+ needs: build
56
+ steps:
57
+ - uses: actions/checkout@v4
58
+ - name: Download build artifacts
59
+ uses: actions/download-artifact@v4
60
+ with:
61
+ name: build
62
+ path: dist/netzgrafik-frontend/
63
+ - uses: actions/setup-node@v4
64
65
+ registry-url: 'https://registry.npmjs.org'
66
+ - run: npm version --no-git-tag-version "0.0.0+$GITHUB_SHA"
67
+ - run: npm publish --provenance --access public --tag snapshot
68
+ env:
69
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments