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 dde4f3dCopy full SHA for dde4f3d
.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,20 @@ 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
+ - name: Download build artifacts
58
+ uses: actions/download-artifact@v4
59
+ with:
60
+ name: build
61
+ path: .
62
+ - uses: actions/setup-node@v4
63
64
+ registry-url: 'https://registry.npmjs.org'
65
+ - run: npm version --no-git-tag-version "0.0.0+$GITHUB_SHA"
66
+ - run: npm publish --provenance --access public --tag snapshot
67
+ env:
68
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments