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 ea97ad8 commit 78be9bfCopy full SHA for 78be9bf
.github/workflows/publish.reusable.yml
@@ -6,9 +6,6 @@ on:
6
- main
7
- supabase-community:main
8
9
-env:
10
- PRERELEASE: "true"
11
-
12
jobs:
13
publish:
14
name: Publish All the Things
@@ -35,17 +32,16 @@ jobs:
35
32
RELEASE_TAG: "0.1.0"
36
33
PRERELEASE: ${{ env.PRERELEASE }}
37
34
38
- # TODO: use latest/nightly tag depending on prerelease
39
- name: Publish npm packages as nightly
40
- if: env.PRELEASE == 'true'
+ if: false
41
run: |
42
for package in packages/@pglt/*; do
43
npm publish $package --tag nightly --access public --provenance
44
done
45
env:
46
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} #
47
- name: Publish npm packages as latest
48
- if: env.PRELEASE != 'true'
+ if: true
49
50
51
npm publish $package --tag latest --access public --provenance
0 commit comments