Skip to content

Merge pull request #1 from mountainash/feat/debug-vercel-deploy #12

Merge pull request #1 from mountainash/feat/debug-vercel-deploy

Merge pull request #1 from mountainash/feat/debug-vercel-deploy #12

Workflow file for this run

name: Release CI
on:
push:
branches:
- master
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.2
cache: npm
- name: Install dependencies
run: npm ci
- name: Run lint command
run: npm run lint
release:
needs: [lint]
name: Build and release
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.2
cache: npm
- name: Install dependencies
run: npm ci
- name: Run build command
run: npm run build
- name: Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
GIT_AUTHOR_NAME: "BetaHuhn Bot"
GIT_AUTHOR_EMAIL: "[email protected]"
GIT_COMMITTER_NAME: "BetaHuhn Bot"
GIT_COMMITTER_EMAIL: "[email protected]"
COMMIT_ASSETS: dist