diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml new file mode 100644 index 0000000..63c3a81 --- /dev/null +++ b/.github/workflows/main.yaml @@ -0,0 +1,16 @@ +on: [push] + +jobs: + hello_world_job: + runs-on: ubuntu-latest + name: A job to test tracker-action + steps: + - name: Test Tracker Action without lock + id: tracker + uses: ./ + with: + lock-enable: false + host: "tracker.mon.dev.pl-waw.internal.scaleway.com" + # Use the output from the `hello` step + - name: Get the output time + run: echo "The time was ${{ steps.hello.outputs.time }}"