Skip to content

Commit

Permalink
Fix failing workflows (#40)
Browse files Browse the repository at this point in the history
* Fix failing workflows

* Fix failing workflows

* flag repo as being safe
  • Loading branch information
FyzHsn authored Feb 10, 2023
1 parent 32a683f commit b88961b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,13 @@ jobs:
outputs:
release: ${{ steps.push.outputs.release }}
steps:
- name: Update git version
if: matrix.container.image == 'centos/python-38-centos7'
run: |
yum remove -y git git-*
yum install -y https://packages.endpointdev.com/rhel/7/os/x86_64/endpoint-repo.x86_64.rpm
yum install -y git
- name: Check out head
uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -125,6 +132,7 @@ jobs:
if [ "$MASTER_VERSION" = "$VERSION" ] ; then
echo "$VERSION has been previously released."
else
git config --global --add safe.directory $PWD
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-aws-plugins.git
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [UNRELEASED]

### Fixed

- Centos tests workflow by updating the Git version.

## [0.15.0] - 2023-01-23

### Changed
Expand Down

0 comments on commit b88961b

Please sign in to comment.