-
Notifications
You must be signed in to change notification settings - Fork 23
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 feature/ATL-1925-define-km-storage-4
- Loading branch information
Showing
19 changed files
with
522 additions
and
54 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
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 |
---|---|---|
|
@@ -30,3 +30,4 @@ jobs: | |
agent | ||
shared | ||
infra | ||
release |
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,49 @@ | ||
name: Release | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
release-component: | ||
description: "Release component" | ||
required: true | ||
default: "mercury/prism-mediator" | ||
release-branch: | ||
description: "Branch to release from" | ||
required: false | ||
default: "main" | ||
|
||
jobs: | ||
release: | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.ATALA_GITHUB_TOKEN }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.inputs.release-branch }} | ||
fetch-depth: 0 | ||
- name: Setup Java and Scala | ||
uses: olafurpg/setup-scala@v13 | ||
with: | ||
java-version: [email protected] | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 'lts/*' | ||
- uses: crazy-max/ghaction-import-gpg@v3 | ||
id: import_gpg | ||
with: | ||
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} | ||
git-user-signingkey: true | ||
git-commit-gpgsign: true | ||
- name: Release | ||
run: | | ||
# Set required environment variables for semantic-release-git | ||
export GIT_AUTHOR_EMAIL="${{ steps.import_gpg.outputs.email }}" | ||
export GIT_COMMITTER_EMAIL="${GIT_AUTHOR_EMAIL}" | ||
export GIT_AUTHOR_NAME="${{ steps.import_gpg.outputs.name }}" | ||
export GIT_COMMITTER_NAME="${GIT_AUTHOR_NAME}" | ||
# Install and run release process | ||
cd ${{ github.event.inputs.release-component }} | ||
npm install | ||
npx semantic-release -e semantic-release-monorepo |
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 |
---|---|---|
|
@@ -10,3 +10,5 @@ target | |
**/.DS_Store | ||
shell.nix | ||
.envrc | ||
node_modules/ | ||
package-lock.json |
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
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,11 @@ | ||
# mercury-v0.1.0 (2022-10-21) | ||
|
||
### Features | ||
|
||
* infra: [ATL-1889] create local deployment config (3f381cd (https://github.com/input-output-hk/atala-prism-building-blocks/commit/3f381cdcb7b8abe9082dc4d36a44e89e47b1d0af)) | ||
* mercury: Coordinate Mediation Protocol (#33 (https://github.com/input-output-hk/atala-prism-building-blocks/issues/33)) (a3ee0d3 (https://github.com/input-output-hk/atala-prism-building-blocks/commit/a3ee0d341a921f39610071eb473d11ceaed0b0e0)) | ||
* mercury: Expose open api-spec for mediator (#38 (https://github.com/input-output-hk/atala-prism-building-blocks/issues/38)) (fdad327 (https://github.com/input-output-hk/atala-prism-building-blocks/commit/fdad3275d3c2a8c70c43999f5dac78751db0bc70)) | ||
* mercury: Mercury Mailbox Mediator Demo (#16 (https://github.com/input-output-hk/atala-prism-building-blocks/issues/16)) (27fc9dc (https://github.com/input-output-hk/atala-prism-building-blocks/commit/27fc9dc61c6494dec62b81314b544938fb7c52ca)) | ||
* mercury: New CI workflow for mercury and fixes (#57 (https://github.com/input-output-hk/atala-prism-building-blocks/issues/57)) (43ad49a (https://github.com/input-output-hk/atala-prism-building-blocks/commit/43ad49a0c0188dc7db5300c1e32043db10e683e7)) | ||
* mercury: New CLI Agent for mercury (#56 (https://github.com/input-output-hk/atala-prism-building-blocks/issues/56)) (5be9c2c (https://github.com/input-output-hk/atala-prism-building-blocks/commit/5be9c2cd0d672ab59f010a5879b745eca65fbf10)) | ||
* mercury: Report Problem Protocol (#21 (https://github.com/input-output-hk/atala-prism-building-blocks/issues/21)) (f5a3711 (https://github.com/input-output-hk/atala-prism-building-blocks/commit/f5a3711da0de2ab2af50facb7e69680882920b6d)) |
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
Oops, something went wrong.