Skip to content

Commit

Permalink
Try self hosted runner (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
firminochangani authored Dec 21, 2023
1 parent c950f71 commit 331736d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ on:
jobs:
tests:
name: tests
runs-on: ubuntu-latest
# runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- uses: arduino/setup-task@v1
Expand Down Expand Up @@ -34,7 +35,8 @@ jobs:

golangci:
name: lint
runs-on: ubuntu-latest
# runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- uses: actions/setup-go@v3
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/deploy-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:

jobs:
deploy:
runs-on: ubuntu-latest
# runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- name: Clone
uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ on:

jobs:
tag:
runs-on: ubuntu-latest
# runs-on: ubuntu-latest
runs-on: self-hosted
outputs:
version: ${{ steps.print_version.outputs.version }}
steps:
Expand Down

0 comments on commit 331736d

Please sign in to comment.