Skip to content

Commit 0bd99a8

Browse files
authored
Merge pull request #41 from gluestack/feat/changeset
fix: testing release flow
2 parents 011c263 + 18a7f05 commit 0bd99a8

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/release-create-next-app-with-gluestack-ui.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,18 @@ jobs:
1414
steps:
1515
- name: Checkout Repo
1616
uses: actions/checkout@v3
17+
1718
- name: Set up Node.js v18.x
1819
uses: actions/setup-node@v3
1920
with:
2021
node-version: '18.x'
22+
2123
- name: Install dependencies (prevent updates to lock file)
2224
run: yarn
23-
- name: Install dependencies (prevent updates to lock file)
24-
run: yarn
25-
- name: Log in to npm
26-
run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
25+
26+
# - name: Log in to npm
27+
# run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
28+
2729
- name: Publish to npm
2830
id: changesets
2931
uses: changesets/action@v1
@@ -32,6 +34,7 @@ jobs:
3234
env:
3335
GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }}
3436
NPM_TOKEN: ${{ secrets.GLUESTACK_ADMIN_NPM_TOKEN }}
37+
3538
- name: Post to a Slack channel
3639
id: slack
3740
if: steps.changesets.outputs.published == 'true'

0 commit comments

Comments
 (0)