actions-testing/.gitea/workflows/demo.yaml
Gabriel Simmer dd1a3a6705
All checks were successful
Gitea Actions Demo / amd-docker (push) Successful in 33s
install zstd
2023-08-15 19:39:53 +01:00

19 lines
441 B
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
amd-docker:
runs-on: debian-latest
steps:
- name: Install prerequisites
run: apt update && apt install -y zstd
- name: Cache Nix store
uses: actions/cache@v3.0.8
id: nix-cache
with:
path: /tmp/cache-me
key: "test-cache"
- run: echo "FOO" > /tmp/cache-me