-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into adopt-draft-naming
- Loading branch information
Showing
7 changed files
with
64 additions
and
320 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: oid4vc-haip-sd-jwt-vc document push | ||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
compile-oid4vc-haip-sd-jwt-vc: | ||
name: Compile site assets | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Run the build process with Docker | ||
run: | | ||
docker run \ | ||
-v /${{ github.workspace }}:/data danielfett/markdown2rfc \ | ||
draft-oid4vc-haip-sd-jwt-vc.md | ||
- name: rename | ||
run: | | ||
mv ./draft-oid4vc-haip-sd-jwt-vc*.html ./draft-oid4vc-haip-sd-jwt-vc-wg-draft.html | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
# Artifact name | ||
name: output # optional | ||
# Destination path | ||
path: ./draft-oid4vc-haip-sd-jwt-vc*.html # optional | ||
|
||
publish-to-pages: | ||
name: Publish to GitHub Pages | ||
if: github.ref == 'refs/heads/main' | ||
needs: compile-oid4vc-haip-sd-jwt-vc | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pages: write | ||
id-token: write | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
steps: | ||
- name: Download artifact | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: output | ||
- name: Upload pages artifact | ||
uses: actions/upload-pages-artifact@v1 | ||
with: | ||
path: . | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v2 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
# Contributing | ||
# How to contribute | ||
|
||
This repository relates to activities in the Internet Engineering Task Force | ||
([IETF](https://www.ietf.org/)). All material in this repository is considered | ||
Contributions to the IETF Standards Process, as defined in the intellectual | ||
property policies of IETF currently designated as | ||
[BCP 78](https://www.rfc-editor.org/info/bcp78), | ||
[BCP 79](https://www.rfc-editor.org/info/bcp79) and the | ||
[IETF Trust Legal Provisions (TLP) Relating to IETF Documents](http://trustee.ietf.org/trust-legal-provisions.html). | ||
I'm really glad you're reading this, because we need volunteer developers to help this effort come to fruition. | ||
|
||
Any edit, commit, pull request, issue, comment or other change made to this | ||
repository constitutes Contributions to the IETF Standards Process | ||
(https://www.ietf.org/). | ||
Here are some important resources: | ||
|
||
You agree to comply with all applicable IETF policies and procedures, including, | ||
BCP 78, 79, the TLP, and the TLP rules regarding code components (e.g. being | ||
subject to a Simplified BSD License) in Contributions. | ||
* [Digital Credentials Protocols (DCP) Working Group Home Page](https://openid.net/wg/digital-credentials-protocols/) should give you a little background | ||
* Mailing list: Join our [mailing list](http://lists.openid.net/mailman/listinfo/openid-specs-digital-credentials-protocols) to ask questions or provide feedback | ||
* Bugs? the issue tracker above is where to report them | ||
|
||
## Intellectual Policy | ||
|
||
You have to sign IPR Contribution Agreement to file issues. [More info on IPR](http://openid.net/intellectual-property/) | ||
|
||
Thanks, | ||
DCP Working Group Co-chairs |