mirror of
https://github.com/pionxzh/chatgpt-exporter.git
synced 2026-07-23 09:00:51 -05:00
64 lines
1.5 KiB
YAML
64 lines
1.5 KiB
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '**'
|
|
|
|
jobs:
|
|
release:
|
|
if: "contains(github.event.head_commit.message, 'chore: release')"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@v2
|
|
|
|
- name: Use Node.js v16
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '16'
|
|
registry-url: https://registry.npmjs.org/
|
|
cache: pnpm
|
|
|
|
- run: pnpm install
|
|
|
|
- name: Build
|
|
run: pnpm run build
|
|
|
|
- name: Lint
|
|
run: pnpm run lint
|
|
|
|
- name: Test
|
|
run: pnpm run test
|
|
|
|
- name: Release
|
|
run: |
|
|
pnpm run clean
|
|
pnpm run release:ci
|
|
|
|
- name: Git commit
|
|
id: commit
|
|
run: |
|
|
git config --local user.email github-actions[bot]@users.noreply.github.com
|
|
git config --local user.name github-actions[bot]
|
|
git config --global core.autocrlf true
|
|
git config --global core.safecrlf false
|
|
git add .
|
|
git commit -m "CI build" -a
|
|
continue-on-error: true
|
|
|
|
- name: Git push
|
|
uses: ad-m/github-push-action@master
|
|
if: ${{ steps.commit.outcome == 'success' }}
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
branch: ${{ github.ref }}
|
|
|
|
- name: Log
|
|
if: ${{ steps.commit.outcome != 'success' }}
|
|
run: echo Nothing to commit.
|