From d7e8324aa314fe52035308b38b9e6ac4f5b3eab7 Mon Sep 17 00:00:00 2001 From: Sean Turner Date: Fri, 20 Sep 2024 10:37:41 -0400 Subject: [PATCH 1/4] Update workflow Update update.yml. --- .github/workflows/update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 7a67007..0f8d6b8 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: "Checkout" - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: "Update Generated Files" uses: martinthomson/i-d-template@v1 From 10e6553af20b5e90f1ae7b85c8c0f4d498a0b818 Mon Sep 17 00:00:00 2001 From: Sean Turner Date: Fri, 20 Sep 2024 10:40:51 -0400 Subject: [PATCH 2/4] Update workflow Update publish.yml. --- .github/workflows/publish.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8e01218..94d885f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -4,6 +4,12 @@ on: push: tags: - "draft-*" + workflow_dispatch: + inputs: + email: + description: "Submitter email" + default: "" + type: string jobs: build: @@ -11,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: "Checkout" - uses: actions/checkout@v3 + uses: actions/checkout@v4 # See https://github.com/actions/checkout/issues/290 - name: "Get Tag Annotations" @@ -22,7 +28,7 @@ jobs: run: date -u "+date=%FT%T" >>"$GITHUB_OUTPUT" - name: "Caching" - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | .refcache @@ -42,8 +48,10 @@ jobs: uses: martinthomson/i-d-template@v1 with: make: upload + env: + UPLOAD_EMAIL: ${{ inputs.email }} - name: "Archive Submitted Drafts" - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: "versioned/draft-*-[0-9][0-9].*" From d3d3f49249e63d84d522c52037f858c243126cea Mon Sep 17 00:00:00 2001 From: Sean Turner Date: Fri, 20 Sep 2024 10:41:32 -0400 Subject: [PATCH 3/4] Update workflow Update update.yml. --- .github/workflows/ghpages.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ghpages.yml b/.github/workflows/ghpages.yml index a26b9db..a1bf36e 100644 --- a/.github/workflows/ghpages.yml +++ b/.github/workflows/ghpages.yml @@ -20,14 +20,14 @@ jobs: runs-on: ubuntu-latest steps: - name: "Checkout" - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: "Setup" id: setup run: date -u "+date=%FT%T" >>"$GITHUB_OUTPUT" - name: "Caching" - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | .refcache @@ -51,7 +51,7 @@ jobs: token: ${{ github.token }} - name: "Archive Built Drafts" - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: | draft-*.html From ba58f25088892ca142193ab1baccdecfb3de3247 Mon Sep 17 00:00:00 2001 From: Sean Turner Date: Fri, 20 Sep 2024 10:42:06 -0400 Subject: [PATCH 4/4] Update workflow Update archive.yml --- .github/workflows/archive.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/archive.yml b/.github/workflows/archive.yml index 605b642..dd9429a 100644 --- a/.github/workflows/archive.yml +++ b/.github/workflows/archive.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: "Checkout" - uses: actions/checkout@v2 + uses: actions/checkout@v4 # Note: No caching for this build! @@ -37,6 +37,6 @@ jobs: token: ${{ github.token }} - name: "Save Archive" - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: archive.json