Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-14, windows-2022]
os: [self-hosted, macos-14, windows-2022]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
Expand All @@ -20,7 +20,7 @@ jobs:
- run: go test ./... -race -cover

build-snapshot:
runs-on: ubuntu-latest
runs-on: self-hosted
needs: test
steps:
- uses: actions/checkout@v6
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:

jobs:
release-please:
runs-on: ubuntu-latest
runs-on: self-hosted
outputs:
release_created: ${{ steps.release.outputs.release_created }}
tag_name: ${{ steps.release.outputs.tag_name }}
Expand All @@ -25,7 +25,7 @@ jobs:
goreleaser:
needs: release-please
if: ${{ needs.release-please.outputs.release_created }}
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- uses: actions/checkout@v6
with: { fetch-depth: 0 }
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
# scopes. Add to repo secrets as SENTRY_AUTH_TOKEN.
needs: [release-please, goreleaser]
if: ${{ needs.release-please.outputs.release_created }}
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- uses: actions/checkout@v6
with: { fetch-depth: 0 }
Expand Down
Loading