forked from react-native-maps/react-native-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (32 loc) · 702 Bytes
/
push.yml
File metadata and controls
36 lines (32 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Push
concurrency:
group: push
on:
push:
branches:
- master
- beta
jobs:
release:
runs-on: ubuntu-latest
env:
HUSKY: 0
steps:
- name: Check out repository code
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: yarn
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Build
run: yarn build
- name: Release
env:
GITHUB_TOKEN: ${{secrets.CI_GITHUB_TOKEN}}
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
run: yarn release