Skip to content

Commit

Permalink
debugging release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
wjcunningham7 committed May 12, 2023
1 parent 8d6eb68 commit ba35b6c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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
Expand Down

1 comment on commit ba35b6c

@wjcunningham7
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.