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!"