generated from AgnostiqHQ/covalent-executor-template
-
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.
- Loading branch information
1 parent
8d6eb68
commit ba35b6c
Showing
1 changed file
with
4 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -61,7 +61,7 @@ jobs: | |
- name: Check out head | ||
uses: actions/checkout@v3 | ||
with: | ||
persist-credentials: true | ||
persist-credentials: false | ||
|
||
- name: Set up Python | ||
if: matrix.os == 'macos-latest' | ||
|
@@ -129,6 +129,9 @@ jobs: | |
if [ "$MASTER_VERSION" = "$VERSION" ] ; then | ||
echo "$VERSION has been previously released." | ||
else | ||
# https://github.com/actions/checkout/issues/766 | ||
git config --global --add safe.directory "$GITHUB_WORKSPACE" | ||
git config user.name "CovalentOpsBot" | ||
git config user.email "[email protected]" | ||
git remote set-url origin https://${{ secrets.COVALENT_OPS_BOT_TOKEN }}@github.com/AgnostiqHQ/covalent-slurm-plugin.git | ||
|
ba35b6c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Related to actions/checkout#363