-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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 #8103 from OpenMined/update_token
upgraded to new personal grained access token in pysyft
- Loading branch information
Showing
6 changed files
with
21 additions
and
25 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 |
---|---|---|
|
@@ -46,7 +46,7 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.SYFT_BUMP_TOKEN }} | ||
token: ${{ secrets.SYFT_BOT_COMMIT_TOKEN }} | ||
- name: Install checksumdir | ||
run: | | ||
pip install --upgrade checksumdir | ||
|
@@ -85,13 +85,12 @@ jobs: | |
|
||
- name: Commit changes | ||
if: ${{needs.hagrid-deploy.outputs.current_hash}} != ${{needs.hagrid-deploy.outputs.previous_hash}} | ||
uses: EndBug/add-and-commit@v7 | ||
uses: EndBug/add-and-commit@v9 | ||
with: | ||
author_name: Madhava Jay | ||
author_email: [email protected] | ||
message: "bump version" | ||
author_name: ${{ secrets.OM_BOT_NAME }} | ||
author_email: ${{ secrets.OM_BOT_EMAIL }} | ||
message: "[hagrid] bump version" | ||
add: "['./packages/hagrid/.bumpversion.cfg','./packages/hagrid/setup.py','./packages/hagrid/hagrid/version.py', './scripts/hagrid_hash', './packages/hagrid/hagrid/manifest_template.yml']" | ||
pull_strategy: NO-PULL | ||
|
||
- name: Build and publish | ||
if: ${{needs.hagrid-deploy.outputs.current_hash}} != ${{needs.hagrid-deploy.outputs.previous_hash}} | ||
|
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 |
---|---|---|
|
@@ -38,7 +38,7 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.SYFT_BUMP_TOKEN }} | ||
token: ${{ secrets.SYFT_BOT_COMMIT_TOKEN }} | ||
|
||
- name: Install checksumdir | ||
run: | | ||
|
@@ -83,15 +83,14 @@ jobs: | |
if: ${{steps.get-hashes.outputs.current_hash != steps.get-hashes.outputs.previous_hash }} | ||
run: echo $(checksumdir packages/syftcli/syftcli -e version.py) > ./scripts/syftcli_hash | ||
|
||
- name: Commit changes | ||
- name: Commit changes to Syft CLI | ||
if: ${{steps.get-hashes.outputs.current_hash != steps.get-hashes.outputs.previous_hash }} | ||
uses: EndBug/add-and-commit@v7 | ||
uses: EndBug/add-and-commit@v9 | ||
with: | ||
author_name: Madhava Jay | ||
author_email: [email protected] | ||
message: "bump version" | ||
author_name: ${{ secrets.OM_BOT_NAME }} | ||
author_email: ${{ secrets.OM_BOT_EMAIL }} | ||
message: "[syftcli]bump version" | ||
add: "['./packages/syftcli/.bumpversion.cfg','./packages/syftcli/setup.py','./packages/syftcli/syftcli/version.py', './scripts/syftcli_hash']" | ||
pull_strategy: NO-PULL | ||
|
||
- name: Build and publish | ||
if: ${{steps.get-hashes.outputs.current_hash != steps.get-hashes.outputs.previous_hash }} | ||
|
@@ -114,8 +113,6 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.SYFT_BUMP_TOKEN }} | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v3 | ||
|
@@ -152,8 +149,6 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.SYFT_BUMP_TOKEN }} | ||
|
||
- name: Deployed Version | ||
run: echo ${{needs.deploy-syft-cli.outputs.deployed_version}} | ||
|
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 |
---|---|---|
|
@@ -15,16 +15,18 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.SYFT_BUMP_TOKEN }} | ||
token: ${{ secrets.SYFT_BOT_COMMIT_TOKEN }} | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Commit changes | ||
|
||
- name: Commit changes to remove notebooks | ||
uses: EndBug/add-and-commit@v9 | ||
with: | ||
author_name: Madhava Jay | ||
author_email: [email protected] | ||
author_name: ${{ secrets.OM_BOT_NAME }} | ||
author_email: ${{ secrets.OM_BOT_EMAIL }} | ||
message: "cleanup notebooks" | ||
remove: "-r notebooks/Experimental/" | ||
commit: "-a" |
Empty file.