Skip to content

Commit 5aef33f

Browse files
committed
Automatic update of .github/workflows/publish.yml
1 parent 9cafa0c commit 5aef33f

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/publish.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,20 @@ on:
44
push:
55
tags:
66
- "draft-*"
7+
workflow_dispatch:
8+
inputs:
9+
email:
10+
description: "Submitter email"
11+
default: ""
12+
type: string
713

814
jobs:
915
build:
1016
name: "Publish New Draft Version"
1117
runs-on: ubuntu-latest
1218
steps:
1319
- name: "Checkout"
14-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
1521

1622
# See https://github.com/actions/checkout/issues/290
1723
- name: "Get Tag Annotations"
@@ -22,7 +28,7 @@ jobs:
2228
run: date -u "+date=%FT%T" >>"$GITHUB_OUTPUT"
2329

2430
- name: "Caching"
25-
uses: actions/cache@v3
31+
uses: actions/cache@v4
2632
with:
2733
path: |
2834
.refcache
@@ -42,8 +48,10 @@ jobs:
4248
uses: martinthomson/i-d-template@v1
4349
with:
4450
make: upload
51+
env:
52+
UPLOAD_EMAIL: ${{ inputs.email }}
4553

4654
- name: "Archive Submitted Drafts"
47-
uses: actions/upload-artifact@v3
55+
uses: actions/upload-artifact@v4
4856
with:
4957
path: "versioned/draft-*-[0-9][0-9].*"

0 commit comments

Comments
 (0)