Files
thiessen.io/.gitea/workflows/build+deploy.yaml
Dennis Thiessen 7bf7339b47
All checks were successful
Build + Deploy / Explore-Gitea-Actions (push) Successful in 4s
workflow yaml pushed
2025-03-15 21:11:19 +01:00

16 lines
533 B
YAML

name: Build + Deploy
run-name: ${{ gitea.actor }} is deploying this page to production.
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "Checkout repository first."
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "The ${{ gitea.repository }} repository has been cloned to the runner."
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
- run: echo "This job's status is ${{ job.status }}."