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 +