mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 05:46:00 +00:00
feat: manual-release (#3184)
This commit is contained in:
parent
5880c979ca
commit
b023fe95a8
27
.github/workflows/manual-release.yml
vendored
Normal file
27
.github/workflows/manual-release.yml
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
name: manual-release
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
pr_number:
|
||||
description: 'Please enter a pull request number'
|
||||
required: true
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
- run: gh pr checkout ${{ inputs.pr_number }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: Commit files
|
||||
run: |
|
||||
yarn install
|
||||
yarn version:alpha -y
|
||||
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
||||
git config --local user.name "github-actions[bot]"
|
||||
git commit -a -m "Add changes"
|
||||
- name: Push changes
|
||||
uses: ad-m/github-push-action@master
|
||||
with:
|
||||
branch: ${{ github.head_ref }}
|
Loading…
Reference in New Issue
Block a user