All checks were successful
Gitea Actions Demo / test (push) Successful in 1m40s
Signed-off-by: Daholli <christoph.hollizeck@hey.com>
22 lines
No EOL
591 B
YAML
22 lines
No EOL
591 B
YAML
name: Gitea Actions Demo
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|
|
|
on:
|
|
schedule:
|
|
- cron: 0 3 * * *
|
|
push:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: native
|
|
|
|
steps:
|
|
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
|
|
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- name: Update flake
|
|
run: |
|
|
cd ${{ gitea.workspace }}
|
|
ls
|
|
nix flake update |