diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0b30d9d..bdb4091 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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: @@ -124,6 +131,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 "covalentopsbot@users.noreply.github.com" git remote set-url origin https://${{ secrets.COVALENT_OPS_BOT_TOKEN }}@github.com/AgnostiqHQ/covalent-ecs-plugin.git diff --git a/CHANGELOG.md b/CHANGELOG.md index 895f643..d810bfc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [UNRELEASED] +### Operations + +- Fix tests workflow. + ## [0.29.0] - 2023-02-28 ### Changed