Skip to content

Commit

Permalink
Switch to public GitHub Action Runners
Browse files Browse the repository at this point in the history
  • Loading branch information
OoLunar committed Oct 2, 2023
1 parent d2de1f2 commit 131f026
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: dotnet build
test_commit:
name: Test Commit
runs-on: self-hosted
runs-on: ubuntu-latest
needs: build_commit
steps:
- name: Setup .NET
Expand All @@ -49,7 +49,7 @@ jobs:
run: dotnet test
document_commit:
name: Document Commit
runs-on: self-hosted
runs-on: ubuntu-latest
needs: test_commit
permissions:
pages: write
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
uses: actions/deploy-pages@v1
benchmark_commit:
name: Benchmark Commit
runs-on: self-hosted
runs-on: ubuntu-latest
needs: test_commit
permissions:
contents: write
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: dotnet build
test_pr:
name: "Test PR #${{ github.event.pull_request.number }}"
runs-on: self-hosted
runs-on: ubuntu-latest
needs: build_pr
steps:
- name: Setup .NET
Expand All @@ -53,7 +53,7 @@ jobs:
run: dotnet test
benchmark_pr:
name: "Benchmark PR #${{ github.event.pull_request.number }}"
runs-on: self-hosted
runs-on: ubuntu-latest
needs: test_pr
permissions:
contents: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
omitBodyDuringUpdate: true # We don't want to update the body of the release.
document_commit:
name: Document Commit
runs-on: self-hosted
runs-on: ubuntu-latest
needs: publish_release
permissions:
pages: write
Expand Down

0 comments on commit 131f026

Please sign in to comment.