chore(ci): add release build

This commit is contained in:
Rickard Natt och Dag 2021-11-23 18:41:17 +01:00
parent b751897d56
commit 84137a4e9a
No known key found for this signature in database
GPG Key ID: 97AA4A72D75845D5
1 changed files with 36 additions and 36 deletions

View File

@ -1,45 +1,45 @@
# name: Release
name: Release
# on:
# push:
# branches:
# - main
on:
push:
branches:
- main
# jobs:
# build:
jobs:
build:
# runs-on: ubuntu-latest
runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v2
steps:
- name: Checkout code
uses: actions/checkout@v2
# - name: Setup Node
# uses: actions/setup-node@v1
# with:
# node-version: '14.17.6'
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '14.17.6'
# - name: Setup timezone
# uses: zcong1993/setup-timezone@master
# with:
# timezone: Europe/Stockholm
- name: Setup timezone
uses: zcong1993/setup-timezone@master
with:
timezone: Europe/Stockholm
# - name: Install dependencies
# run: npx lerna bootstrap
- name: Install dependencies
run: yarn
# - name: Run linting and tests
# run: |
# yarn lint
# yarn test
# env:
# CI: true
- name: Run linting and tests
run: |
yarn lint
yarn test
env:
CI: true
# - name: Create release using semantic-release
# uses: cycjimmy/semantic-release-action@v2
# with:
# semantic_version: 17.1.1
# extra_plugins: |
# @semantic-release/changelog@5.0.1
# @semantic-release/git@9.0
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create release using semantic-release
uses: cycjimmy/semantic-release-action@v2
with:
semantic_version: 17.1.1
extra_plugins: |
@semantic-release/changelog@5.0.1
@semantic-release/git@9.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}