Skip to content

Commit

Permalink
NoTicket: Use self-hosted runners instead of GitHub-hosted runners
Browse files Browse the repository at this point in the history
  • Loading branch information
daniddelrio committed Nov 10, 2023
1 parent 8bd59c6 commit 059dd55
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
check:
runs-on: ubuntu-latest
runs-on: [self-hosted, small]
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
uses: ./.github/workflows/check.yml
publish:
needs: check
runs-on: ubuntu-latest
runs-on: [self-hosted, small]
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
Expand All @@ -37,7 +37,7 @@ jobs:
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
github-release:
needs: publish
runs-on: ubuntu-latest
runs-on: [self-hosted, small]
steps:
- uses: actions/checkout@v3
- name: Extract release notes
Expand Down

0 comments on commit 059dd55

Please sign in to comment.