-
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.
Release: v7.0.9 [API] v0.1.7 [SDK] (#75)
* Bump browserify-sign from 4.2.1 to 4.2.2 in /ui Bumps [browserify-sign](https://github.com/crypto-browserify/browserify-sign) from 4.2.1 to 4.2.2. - [Changelog](https://github.com/browserify/browserify-sign/blob/main/CHANGELOG.md) - [Commits](browserify/browserify-sign@v4.2.1...v4.2.2) --- updated-dependencies: - dependency-name: browserify-sign dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> * Bump @adobe/css-tools from 4.3.1 to 4.3.2 in /ui Bumps [@adobe/css-tools](https://github.com/adobe/css-tools) from 4.3.1 to 4.3.2. - [Changelog](https://github.com/adobe/css-tools/blob/main/History.md) - [Commits](https://github.com/adobe/css-tools/commits) --- updated-dependencies: - dependency-name: "@adobe/css-tools" dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> * add in variable for cpu and memory usage for task * resolve PR comments * create protected domain via the sdk * Fix file prefix path to ensure dataset last updated it always updated * update docs * regex check for username * some more changes * Mostly working tests * mostly working tests * passed tests * lint errors * fix PR comments * removing unneeded load_dotenv * fixing tests, not sure why they fail * remove unneeded packages * add regex expression to env file * fix * quick check * Trying to see regex env var in action context * fixing typo * fix dev.yml * try again * fix * test yml * amend blocks * forgot to amend rapid module * quick code comment responses * wrong name for regex var, fix * trying without slashes * Fix/release process (#74) * see if sdk_test can be brought back * quick fix * misspelt step * more fixes * Fixing action uncomment blocks * make separate release processes for api and sdk * Creating separate make commands for the api and sdk releases, contain execution using if condition * Split markdown files for changelog * delete old changelog * docs process updated * reorganise changelog order * adding quick fix to setup.py * fix comments * final fix * resolve comments * update docs * fix * Update contributing.md * fix --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: mohit <MMotwani@no10.gov.uk> Co-authored-by: MotwaniM <73472421+MotwaniM@users.noreply.github.com>
- Loading branch information
1 parent
11c0ca1
commit 7c965d0
Showing
33 changed files
with
509 additions
and
132 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: rAPId Release | ||
|
||
on: | ||
release: | ||
types: [released] | ||
|
||
jobs: | ||
setup: | ||
if: github.event.release.name == 'sdk release' | ||
runs-on: self-hosted | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Log commit SHA | ||
run: echo $GITHUB_SHA | ||
|
||
sdk-release: | ||
needs: | ||
- setup | ||
runs-on: self-hosted | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Populate .env with additional vars | ||
run: | | ||
echo TWINE_USERNAME=${{ secrets.TWINE_USERNAME }} >> .env | ||
echo TWINE_PASSWORD=${{ secrets.TWINE_PASSWORD }} >> .env | ||
echo TWINE_NON_INTERACTIVE=true >> .env | ||
- name: Setup Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
cache: 'pip' | ||
|
||
- name: Setup Python Environment | ||
run: | | ||
make sdk-setup | ||
source sdk/.venv/bin/activate | ||
- name: SDK Release | ||
run: make sdk-release | ||
|
||
cleanup: | ||
needs: | ||
- setup | ||
- sdk-release | ||
runs-on: self-hosted | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Clean Docker Context | ||
if: always() | ||
run: make clean-pipeline-docker-context |
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 |
---|---|---|
|
@@ -13,4 +13,4 @@ pydantic[email] | |
python-multipart | ||
uvicorn | ||
requests | ||
strenum | ||
strenum |
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.