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 78be9bf commit d920fc9Copy full SHA for d920fc9
.github/workflows/publish.reusable.yml
@@ -32,6 +32,13 @@ jobs:
32
RELEASE_TAG: "0.1.0"
33
PRERELEASE: ${{ env.PRERELEASE }}
34
35
+ - name: Verify NPM TOKEN exists
36
+ if: !!secrets.NPM_TOKEN
37
+ run: |
38
+ {
39
+ echo "Found NPM Token"
40
+ }
41
+
42
- name: Publish npm packages as nightly
43
if: false
44
run: |
@@ -40,11 +47,12 @@ jobs:
47
done
48
env:
49
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} #
50
51
- name: Publish npm packages as latest
52
if: true
45
53
46
54
for package in packages/@pglt/*; do
55
npm publish $package --tag latest --access public --provenance
56
57
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} #
58
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments