feat: UNT-T31323: Init redux saga dev tool for expo #2
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' | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
release: | |
name: 🚀 Publish | |
runs-on: macos-13 | |
steps: | |
- name: 📚 checkout | |
uses: actions/[email protected] | |
- name: 🟢 node | |
uses: actions/[email protected] | |
with: | |
node-version: 18 | |
registry-url: https://registry.npmjs.org | |
- name: 🚀 Build & Publish | |
run: yarn install && cd webui && yarn install && yarn run export && cd .. && yarn build && yarn publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}} |