Skip to content

Commit

Permalink
switch to selfhosted runner
Browse files Browse the repository at this point in the history
  • Loading branch information
BolajiOlajide authored Sep 12, 2024
1 parent 3649d2c commit dd2cd31
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ on:

jobs:
setup:
runs-on: ubuntu-18.04
# runs-on: ubuntu-18.04
runs-on: self-hosted

if: github.event.inputs.version == 'major' || github.event.inputs.version == 'minor' || github.event.inputs.version == 'patch'

Expand All @@ -31,7 +32,8 @@ jobs:

test:
needs: setup
runs-on: ubuntu-latest
# runs-on: ubuntu-latest
runs-on: self-hosted

steps:
- uses: actions/checkout@v2
Expand All @@ -53,7 +55,8 @@ jobs:
publish:
name: "Publish new major version"
needs: test
runs-on: ubuntu-latest
#runs-on: ubuntu-latest
runs-on: self-hosted

if: github.repository_owner == 'BolajiOlajide'

Expand Down

0 comments on commit dd2cd31

Please sign in to comment.