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].*"