Merge pull request #280 from oauth-wg/ttl_consideration #18
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Publish New Draft Version" | |
on: | |
push: | |
tags: | |
- "draft-*" | |
workflow_dispatch: | |
inputs: | |
email: | |
description: "Submitter email" | |
default: "" | |
type: string | |
jobs: | |
build: | |
name: "Publish New Draft Version" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
# See https://github.com/actions/checkout/issues/290 | |
- name: "Get Tag Annotations" | |
run: git fetch -f origin ${{ github.ref }}:${{ github.ref }} | |
- name: "Setup" | |
id: setup | |
run: date -u "+date=%FT%T" >>"$GITHUB_OUTPUT" | |
- name: "Generate examples" | |
run: | | |
npm install -g cborg | |
python3 -m pip install --upgrade pip wheel setuptools==76.1.0 | |
python3 -m pip install -r src/requirements.txt | |
python3 src/main.py | |
- name: "Caching" | |
uses: actions/cache@v4 | |
with: | |
path: | | |
.refcache | |
.venv | |
.gems | |
node_modules | |
.targets.mk | |
key: i-d-${{ steps.setup.outputs.date }} | |
restore-keys: i-d- | |
- name: "Build Drafts" | |
uses: martinthomson/i-d-template@v1 | |
with: | |
token: ${{ github.token }} | |
- name: "Upload to Datatracker" | |
uses: martinthomson/i-d-template@v1 | |
with: | |
make: upload | |
env: | |
UPLOAD_EMAIL: ${{ inputs.email }} | |
- name: "Archive Submitted Drafts" | |
uses: actions/upload-artifact@v4 | |
with: | |
path: "versioned/draft-*-[0-9][0-9].*" |