Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions .github/workflows/release-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 18
- run: yarn
- run: yarn build
- run: npm install
- run: npm run build

publish-gpr:
needs: build
Expand All @@ -25,10 +25,9 @@ jobs:
with:
node-version: 18
registry-url: "https://registry.npmjs.org"
- run: yarn
- run: yarn build
- run: yarn publish --access public --tag dev
- run: npm install
- run: npm run build
- run: npm publish --access public --tag dev
env:
YARN_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
NPM_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
11 changes: 5 additions & 6 deletions .github/workflows/release-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,9 @@ jobs:
with:
node-version: 18
registry-url: "https://registry.npmjs.org"
- run: yarn
- run: yarn build
- run: yarn publish --access public
- run: npm install
- run: npm run build
- run: npm publish --access public
env:
YARN_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
NPM_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ node_modules
*.cache
dist
.parcel-cache
package-lock.json
.nyc_output
coverage/
*.tsbuildinfo
Expand Down
2 changes: 0 additions & 2 deletions .yarnrc

This file was deleted.

Loading
Loading