Skip to content

0.2.28

0.2.28 #114

Workflow file for this run

name: publish-package
on:
release:
types: [created]
jobs:
publish-npm-registry:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v4
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org'
- name: Setup expo cli
uses: expo/expo-github-action@v8
with:
expo-version: 4.x
- run: yarn --network-concurrency 1
- run: yarn pre
- run: yarn build
- run: cd lib && yarn publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}