publish dev versions #13
Workflow file for this run
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
name: publish dev versions | |
on: | |
workflow_dispatch: | |
jobs: | |
publish-dev-versions: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🤘 checkout | |
uses: actions/checkout@v3 | |
- name: ⚙️ Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: 18.x | |
cache: 'npm' | |
- name: 🔐 Authenticate with NPM | |
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc | |
- run: npm ci --ignore-scripts | |
- name: ✌️ Update versions | |
run: npx ts-node --esm ./scripts/update-dev-versions.ts | |
- name: 🛠️ Build | |
run: npm run build | |
- name: 🚀 Publish types | |
working-directory: ./packages/types | |
run: npm publish --tag dev | |
- name: 🚀 Publish utils | |
working-directory: ./packages/utils | |
run: npm publish --tag dev | |
- name: 🚀 Publish builder | |
working-directory: ./packages/builder | |
run: npm publish --tag dev | |
- name: 🚀 Publish config | |
working-directory: ./packages/config | |
run: npm publish --tag dev | |
- name: 🚀 Publish sdk | |
working-directory: ./packages/sdk | |
run: npm publish --tag dev |