diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f42100..eada15d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: jobs: ci: - runs-on: [self-hosted, staging-runner] + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1fe8864..4219d9e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,7 +10,7 @@ jobs: # Verify both packages build and pass tests, in lockstep. # If either fails, neither publishes. verify: - runs-on: [self-hosted, staging-runner] + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -83,7 +83,7 @@ jobs: publish-npm: needs: verify if: startsWith(github.ref, 'refs/tags/v') - runs-on: [self-hosted, staging-runner] + runs-on: ubuntu-latest permissions: contents: read id-token: write @@ -122,7 +122,7 @@ jobs: # still be able to push the matching PyPI artifact. needs: verify if: startsWith(github.ref, 'refs/tags/v') - runs-on: [self-hosted, staging-runner] + runs-on: ubuntu-latest permissions: contents: read id-token: write