From 7f04c23f49c4ab194e98a3f9a641cac76a0543fe Mon Sep 17 00:00:00 2001 From: Ivan Herman Date: Sun, 29 Sep 2024 06:09:32 -0700 Subject: [PATCH 1/3] Setting up the echidna action --- .github/workflows/auto-publish.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/auto-publish.yml diff --git a/.github/workflows/auto-publish.yml b/.github/workflows/auto-publish.yml new file mode 100644 index 0000000..bf2d969 --- /dev/null +++ b/.github/workflows/auto-publish.yml @@ -0,0 +1,20 @@ +# .github/workflows/auto-publish.yml +name: CI +on: + pull_request: {} + push: + branches: [main] +jobs: + main: + name: Build, Validate and Deploy + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v3 + - uses: w3c/spec-prod@v2 + with: + TOOLCHAIN: respec + W3C_ECHIDNA_TOKEN: ${{ secrets.W3C_TR_TOKEN }} + W3C_WG_DECISION_URL: https://www.w3.org/2017/vc/WG/Meetings/Minutes/2023-04-12-vcwg#resolution1 + W3C_BUILD_OVERRIDE: | + shortName: vc-use-cases + specStatus: NOTE From 340ab248cd3e1c37df0bf5b03be6dff7bc473fc6 Mon Sep 17 00:00:00 2001 From: Ivan Herman Date: Tue, 1 Oct 2024 08:53:32 +0200 Subject: [PATCH 2/3] Update .github/workflows/auto-publish.yml Co-authored-by: Ted Thibodeau Jr --- .github/workflows/auto-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-publish.yml b/.github/workflows/auto-publish.yml index bf2d969..6dcfec7 100644 --- a/.github/workflows/auto-publish.yml +++ b/.github/workflows/auto-publish.yml @@ -6,7 +6,7 @@ on: branches: [main] jobs: main: - name: Build, Validate and Deploy + name: Build, Validate, and Deploy runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 From 9e8d322ac13651e653ba1725a87874a5c0d06506 Mon Sep 17 00:00:00 2001 From: Kevin Dean <62221066+KDean-GS1@users.noreply.github.com> Date: Tue, 7 Jan 2025 11:17:39 -0500 Subject: [PATCH 3/3] Update to use checkout v4 --- .github/workflows/auto-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-publish.yml b/.github/workflows/auto-publish.yml index 6dcfec7..ef8e9ce 100644 --- a/.github/workflows/auto-publish.yml +++ b/.github/workflows/auto-publish.yml @@ -9,7 +9,7 @@ jobs: name: Build, Validate, and Deploy runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: w3c/spec-prod@v2 with: TOOLCHAIN: respec