Skip to content

ci: update release configurations #67

ci: update release configurations

ci: update release configurations #67

Workflow file for this run

name: release
on:
push:
branches:
- main
- next
pull_request:
branches:
- main
- next
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- uses: wagoid/commitlint-github-action@v6
env:
NODE_PATH: ${{ github.workspace }}/node_modules
- name: validate (lint)
run: yarn lint
- name: Build
run: yarn build
- name: Test
run: yarn test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
release:
needs:
- build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: Build
run: yarn build
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
with:
semantic_version: 19.0.2
branches: |
[
'+([0-9])?(.{+([0-9]),x}).x',
'main',
'next',
'next-major',
{
name: 'beta',
prerelease: true
},
{
name: 'alpha',
prerelease: true
}
]
extra_plugins: |
@semantic-release/changelog
@semantic-release/git
@semrel-extra/npm
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GIT_AUTHOR_EMAIL: "contact@evilfactorylabs.org"
GIT_COMMITTER_EMAIL: "contact@evilfactorylabs.org"
GIT_AUTHOR_NAME: "anakmagang"
GIT_COMMITTER_NAME: "anakmagang"