From 78d8fc6885a69415889cc0faf41dacfa5556acb9 Mon Sep 17 00:00:00 2001 From: Mike Smith <89040888+smiggiddy@users.noreply.github.com> Date: Sat, 21 Sep 2024 21:11:29 -0400 Subject: [PATCH] feating --- .gitea/workflows/test.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .gitea/workflows/test.yml diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml new file mode 100644 index 0000000..4e6dafa --- /dev/null +++ b/.gitea/workflows/test.yml @@ -0,0 +1,27 @@ +name: Deez +on: +- push + +jobs: + nuts: + name: check deez nuts + runs-on: docker + steps: + - name: echo deez + run: echo 'deez nuts' + + gitea_job: + name: A job to say hi + steps: + - name: Hello world action step + id: hello + uses: https://git.thecodedom.com/smig/hello-world-action@v2 + with: + who-to-greet: 'Smig & Smiggiddy' + + - name: Get the output time + run: echo "The time was ${{ steps.hello.outputs.time }}" + + - name: Get the env variables + run: env +