test/.gitea/workflows/demo.yaml
Jack O'Sullivan 679a74ebd0
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 15s
Add cache test
2023-11-17 01:35:44 +00:00

34 lines
1.3 KiB
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-22.04
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code
uses: actions/checkout@v3
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
- name: Set up cache
uses: actions/cache@v3
with:
path: magic-data.txt
key: ${{ runner.os }}-magic
- name: Check or make magic
run: |
if [ -f magic-data.txt ]; then
echo existing magic
cat magic-data.txt
else
echo creating magic
echo "$(date)" > magic-data.txt
fi
- run: echo "🍏 This job's status is ${{ job.status }}."