Skip to content

Commit 3d17c0e

Browse files
authored
fix: remove public limit on beta (#17)
* fix: remove public limit on beta * 1.0.0-beta.2
1 parent f3dde71 commit 3d17c0e

File tree

3 files changed

+3
-11
lines changed

3 files changed

+3
-11
lines changed

.github/workflows/publish.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ jobs:
6565
if-no-files-found: error
6666

6767
publish:
68-
if: startsWith(github.ref, 'refs/tags/v')
6968
needs: test
7069
runs-on: ubuntu-latest
7170
steps:
@@ -90,13 +89,6 @@ jobs:
9089
env:
9190
NODE_AUTH_TOKEN: ${{ secrets.PAT_TOKEN }}
9291

93-
# Dry-run when invoked via workflow_call with dry_run=true
94-
- name: Publish to npm (dry-run)
95-
if: ${{ github.event_name != 'release' && inputs.dry_run }}
96-
run: npm publish --dry-run
97-
98-
- run: npm pack # optional: sanity check the tarball contents
99-
if: ${{ github.event_name == 'release' || !inputs.dry_run }}
10092
- run: npm publish
10193
env:
10294
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tetherto/pear-wrk-wdk",
3-
"version": "1.0.0-beta.1",
3+
"version": "1.0.0-beta.2",
44
"main": "index.js",
55
"scripts": {
66
"build:types": "rimraf *.d.ts **/*.d.ts; tsc",

0 commit comments

Comments
 (0)