Skip to content

Commit 79a612f

Browse files
committed
fix: removed npm publish workflow
1 parent d8108b1 commit 79a612f

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -63,23 +63,23 @@ jobs:
6363
run: |
6464
yarn example expo export --platform web
6565
66-
publish-npm:
67-
needs: [build-library, test]
68-
runs-on: ubuntu-latest
69-
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
70-
steps:
71-
- name: Checkout
72-
uses: actions/checkout@v3
73-
74-
- name: Setup
75-
uses: ./.github/actions/setup
76-
77-
- name: Build package
78-
run: yarn prepare
79-
80-
- name: Publish to npm
81-
run: |
82-
npm config set //registry.npmjs.org/:_authToken=${NPM_TOKEN}
83-
npm publish --access public
84-
env:
85-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
66+
# publish-npm:
67+
# needs: [build-library, test]
68+
# runs-on: ubuntu-latest
69+
# if: github.event_name == 'push' && github.ref == 'refs/heads/main'
70+
# steps:
71+
# - name: Checkout
72+
# uses: actions/checkout@v3
73+
74+
# - name: Setup
75+
# uses: ./.github/actions/setup
76+
77+
# - name: Build package
78+
# run: yarn prepare
79+
80+
# - name: Publish to npm
81+
# run: |
82+
# npm config set //registry.npmjs.org/:_authToken=${NPM_TOKEN}
83+
# npm publish --access public
84+
# env:
85+
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)