Merge branch 'main' of https://github.com/hit-pay/orchid into next #598
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
on: | |
push: | |
branches: next | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
registry-url: https://registry.npmjs.org | |
- name: Running ci | |
run: npm ci | |
- name: Install dependencies | |
run: npm install | |
- name: Login npm | |
run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc | |
- name: update version orchid core | |
run: npm run version:update-core-patch | |
- name: build orchid core | |
run: npm run publish:core | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: update version orchid dashboard | |
run: npm run version:update-dashboard-patch | |
- name: publish orchid dashboard | |
run: npm run publish:dashboard | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |