Skip to content

Commit

Permalink
feat: readd self-hosted runner
Browse files Browse the repository at this point in the history
  • Loading branch information
jochumdev committed Nov 10, 2024
1 parent e9a32a9 commit 9a2d009
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ permissions: read-all
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64]
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -21,7 +21,7 @@ jobs:
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }}
test:
name: Unit Tests
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64]
steps:
- uses: actions/checkout@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ permissions: read-all
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64]
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -19,7 +19,7 @@ jobs:
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }}
test:
name: Unit Tests
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64]
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 9a2d009

Please sign in to comment.