Revert changes from PR #251 (#278) #19
Workflow file for this run
This file contains 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-*" | |
jobs: | |
build: | |
name: "Publish New Draft Version" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v3 | |
# 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" | |
# Install the SD-JWT tooling using pip | |
- name: "Install SD-JWT tooling" | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m pip install git+https://github.com/openwallet-foundation-labs/sd-jwt-python.git | |
# Build the local examples | |
- name: "Build local examples" | |
run: | | |
cd examples | |
sd-jwt-generate example | |
- name: "Caching" | |
uses: actions/cache@v3 | |
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 | |
- name: "Archive Submitted Drafts" | |
uses: actions/upload-artifact@v3 | |
with: | |
path: "versioned/draft-*-[0-9][0-9].*" |