Add cache test
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 15s Details

This commit is contained in:
Jack O'Sullivan 2023-11-17 01:35:44 +00:00
parent c5bdc6de71
commit 679a74ebd0
1 changed files with 15 additions and 1 deletions

View File

@ -4,7 +4,7 @@ on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
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!"
@ -16,4 +16,18 @@ jobs:
- 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 }}."