-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #634 from iris-connect/release
Release 2022-02
- Loading branch information
Showing
144 changed files
with
6,775 additions
and
2,171 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
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
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
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 |
---|---|---|
|
@@ -17,6 +17,11 @@ jobs: | |
if: "!contains(github.event.head_commit.message, 'skip ci')" | ||
runs-on: ubuntu-latest | ||
|
||
env: | ||
DCT_PRIVATE_KEY: ${{ secrets.DOCKER_HUB_DCT_PRIVATE_KEY }} | ||
DCT_PRIVATE_KEY_PASSPHRASE: ${{ secrets.DOCKER_HUB_DCT_PASSPHRASE }} | ||
DCT_PRIVATE_KEY_IDENTIFIER: ${{ secrets.DOCKER_HUB_DCT_PRIVATE_KEY_IDENTIFIER }} | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/[email protected] | ||
|
@@ -35,7 +40,10 @@ jobs: | |
with: | ||
username: ${{ secrets.DOCKER_HUB_USER }} | ||
password: ${{ secrets.DOCKER_HUB_PW }} | ||
|
||
|
||
- name: Setup DCT | ||
run: sh ./.setup_dct.sh | ||
|
||
- run: chmod +x ./.prepare-release.sh | ||
|
||
- run: node -v; npm -v | ||
|
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 |
---|---|---|
|
@@ -5,13 +5,13 @@ Source: https://github.com/iris-connect/iris-client | |
|
||
Files: * | ||
# Copyright: $YEAR $NAME <$CONTACT> | ||
Copyright: 2021-2021 The IRIS Client Authors (see AUTHORS.md) <[email protected]> | ||
Copyright: 2021-present The IRIS Client Authors (see AUTHORS.md) <[email protected]> | ||
License: AGPL-3.0-or-later | ||
|
||
# File from SORMAS with own license | ||
Files: iris-client-bff/src/main/java/iris/client_bff/core/Base32.java | ||
Copyright: Copyright © 2016-2018 Helmholtz-Zentrum für Infektionsforschung GmbH (HZI) | ||
License: GPL-3.0-or-later | ||
#Files: iris-client-bff/src/main/java/iris/client_bff/core/Base32.java | ||
#Copyright: Copyright © 2016-2018 Helmholtz-Zentrum für Infektionsforschung GmbH (HZI) | ||
#License: GPL-3.0-or-later | ||
|
||
# Files from Maven Wrapper with own license | ||
Files: **/MavenWrapperDownloader.java | ||
|
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,19 @@ | ||
#!/bin/bash | ||
|
||
# exit when any command fails | ||
set -e | ||
|
||
DCT_PATH=~/.docker/trust/private/ | ||
|
||
DCT_KEY_FILE="$DCT_PATH$DCT_PRIVATE_KEY_IDENTIFIER.key" | ||
|
||
mkdir -p "$DCT_PATH" | ||
|
||
echo "$DCT_PRIVATE_KEY" > "$DCT_KEY_FILE" | ||
|
||
chmod 600 "$DCT_KEY_FILE" | ||
|
||
export DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE="$DCT_PRIVATE_KEY_PASSPHRASE" | ||
export DOCKER_CONTENT_TRUST=1 | ||
docker trust key load "$DCT_KEY_FILE" | ||
|
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
Oops, something went wrong.