Skip to content

Commit

Permalink
build: don't use self hosted runner
Browse files Browse the repository at this point in the history
  • Loading branch information
tada5hi committed Aug 31, 2023
1 parent 10ef9a1 commit c8bc6e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ env:
jobs:
install:
name: Checkout and Install
runs-on: [ self-hosted, docker, linux, x64 ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -29,7 +29,7 @@ jobs:
build:
name: Build
needs: [install]
runs-on: [ self-hosted, docker, linux, x64 ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -43,7 +43,7 @@ jobs:
test:
name: Test
needs: [ build ]
runs-on: [ self-hosted, docker, linux, x64 ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -62,7 +62,7 @@ jobs:
release:
name: Release
needs: [build, test]
runs-on: [ self-hosted, docker, linux, x64 ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit c8bc6e4

Please sign in to comment.