next-app-boilerplate/.github/workflows/ci.yml
Walid dbcc476c26
refactor: semantic release and ci workflow (#46)
* refactor: update ci and semantic release
2022-08-14 01:04:45 +01:00

31 lines
595 B
YAML

name: 'Build & Release'
on:
push:
branches: [master]
jobs:
build-release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3.0.0
- name: Use Node.js
uses: actions/setup-node@v3.1.1
with:
node-version: 16.x
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Building project
run: yarn build
- name: Release project
run: yarn release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}