From a267582d03d7b0c561a535d06c3fe07beee33d83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Mon, 16 Oct 2023 21:23:02 +0200 Subject: [PATCH] add pipeline --- .gitea/workflows/demo.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitea/workflows/demo.yaml diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml new file mode 100644 index 0000000..d19d208 --- /dev/null +++ b/.gitea/workflows/demo.yaml @@ -0,0 +1,11 @@ +name: Gitea Actions Demo +run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +on: [push] + +jobs: + print: + runs-on: ubuntu-latest + steps: + name: print secret + run: + echo "The secret is ${{ test.secret }}"