Add .gitea/workflows/manual.yml
This commit is contained in:
16
.gitea/workflows/manual.yml
Normal file
16
.gitea/workflows/manual.yml
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
name: Manual Trigger Workflow
|
||||||
|
|
||||||
|
# configure manual trigger
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Build project
|
||||||
|
run: |
|
||||||
|
npm install
|
||||||
|
npm run build
|
||||||
Reference in New Issue
Block a user