From d128fa7399407a48356a954c3f56db0c13afbb2e Mon Sep 17 00:00:00 2001 From: Chris O'Neil Date: Wed, 18 Dec 2024 12:41:00 +0000 Subject: [PATCH] chore: switch back to github build agent For the last several months we have been using a self-hosted build agent for the publishing step because we encountered problems with disk space on the Github build agent. Now there is some kind of issue with the connection from Github to the self-hosted agent. Going to try switching back to Github infrastructure again. Perhaps we won't encounter the disk space issue. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1bac187978..fc0a33f781 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -245,7 +245,7 @@ jobs: publish-crates: if: ${{ github.repository_owner == 'maidsafe' && github.ref == 'refs/heads/stable' }} needs: [ build, s3-release ] - runs-on: self-hosted + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: