Opti1337 69f4235185
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 25s
Gitea Actions test
2024-03-01 07:53:45 +03:00

21 lines
490 B
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on:
push:
branches:
- main
jobs:
Explore-Gitea-Actions:
runs-on: main
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Build app
run: |
yarn
yarn build
ls
- name: Move to Nginx folder
run: cp -r .output /var/www/html
- run: echo "🍏 This job's status is ${{ job.status }}."