23 lines
469 B
YAML
23 lines
469 B
YAML
|
name: Gitea Actions Demo
|
||
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
||
|
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
|
||
|
#on:
|
||
|
# push:
|
||
|
# branches:
|
||
|
# - main
|
||
|
|
||
|
jobs:
|
||
|
build-and-deploy:
|
||
|
runs-on: main
|
||
|
steps:
|
||
|
- name: Check out repository code
|
||
|
uses: actions/checkout@v4
|
||
|
- name: Build app
|
||
|
run: |
|
||
|
yarn
|
||
|
yarn generate
|
||
|
- name: Move result to /var/www/koptilnya.xyz
|
||
|
run: cp -r .output/. /var/www/koptilnya.xyz
|