1
1
mirror of https://github.com/theoludwig/react-component-form.git synced 2024-07-17 07:30:13 +02:00
react-component-form/.github/workflows/release.yml

39 lines
819 B
YAML
Raw Normal View History

2021-06-17 18:48:19 +02:00
name: 'Release'
on:
push:
branches: [master]
jobs:
build:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v2'
- name: 'Use Node.js'
2022-02-19 17:18:13 +01:00
uses: 'actions/setup-node@v2.5.1'
2021-06-17 18:48:19 +02:00
with:
2022-02-19 17:18:13 +01:00
node-version: 'lts/*'
cache: 'npm'
2021-06-17 18:48:19 +02:00
- name: 'Install'
2022-02-19 17:18:13 +01:00
run: 'npm install'
2021-06-17 18:48:19 +02:00
- name: 'Build Package'
run: 'npm run build'
- name: 'Build Example'
2022-02-19 17:18:13 +01:00
run: 'cd example && npm install && npm run build'
2021-06-17 18:48:19 +02:00
- name: 'Deploy Example'
uses: 'JamesIves/github-pages-deploy-action@4.1.4'
with:
branch: 'gh-pages'
folder: 'example/dist'
2021-06-17 19:32:56 +02:00
- name: 'Release'
run: 'npm run release'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}