From 80f907b55918ef3451b31fdc1112cae911612772 Mon Sep 17 00:00:00 2001 From: Niko Kangas Date: Wed, 5 Aug 2026 14:36:27 +0200 Subject: [PATCH] second test --- .gitea/workflows/second.yaml | 8 ++++++++ .gitea/workflows/test.yaml | 12 ------------ 2 files changed, 8 insertions(+), 12 deletions(-) create mode 100644 .gitea/workflows/second.yaml delete mode 100644 .gitea/workflows/test.yaml diff --git a/.gitea/workflows/second.yaml b/.gitea/workflows/second.yaml new file mode 100644 index 0000000..15638b9 --- /dev/null +++ b/.gitea/workflows/second.yaml @@ -0,0 +1,8 @@ +name: second +on: push +jobs: + print-variables_asd: + runs-on: ubuntu-latest + steps: + - run: echo ${{secrets.SECRET1}} + - run: echo ${{variables.VARIABLE1}} diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml deleted file mode 100644 index 395a8cd..0000000 --- a/.gitea/workflows/test.yaml +++ /dev/null @@ -1,12 +0,0 @@ -name: Test - -on: [push] - -jobs: - hello: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - run: echo "Hello from my Framework!"