delay actions workflow for later
This commit is contained in:
parent
2bb07a4086
commit
575a0cae25
1 changed files with 0 additions and 0 deletions
22
.gitea.bak/workflows/build.yaml
Normal file
22
.gitea.bak/workflows/build.yaml
Normal file
|
@ -0,0 +1,22 @@
|
|||
name: build
|
||||
run-name: build
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: latest
|
||||
- run: npm ci
|
||||
- run: npm run build
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: dist
|
||||
path: dist/
|
Loading…
Add table
Add a link
Reference in a new issue