From 1262e81e3e4a64977312d6bb820edea652da7a96 Mon Sep 17 00:00:00 2001 From: Julien Lengrand-Lambert Date: Wed, 20 Jan 2021 16:44:10 +0100 Subject: [PATCH] Test for v01 --- .github/workflows/main.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a34df56..9a12fe3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,15 +1,14 @@ on: [push] jobs: - hello_world_job: + check_html_links_job: runs-on: ubuntu-latest name: A job to test check-html-links-action steps: - name: check-html-links-action step - id: hello - uses: jlengrand/check-html-links-action@v0 + id: check-links + uses: jlengrand/check-html-links-action@v01 with: - who-to-greet: 'Mona the Octocat' - # Use the output from the `hello` step - - name: Get the output time - run: echo "The time was ${{ steps.hello.outputs.time }}" \ No newline at end of file + doc-folder: 'test-site' + - name: Get the output + run: echo "${{ steps.check-links.outputs.result }}" \ No newline at end of file