Skip to content

Commit

Permalink
chore: self hosted runners (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
andre-lx authored Dec 13, 2022
1 parent 53507eb commit 428e9f1
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/merge-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
prepare:
name: Calculate Version and Build Number
runs-on: ubuntu-20.04
runs-on: self-hosted

outputs:
build_number: ${{ steps.short_sha.outputs.value }}
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
if: needs.prepare.outputs.new_release == 'true'

name: Build
runs-on: ubuntu-20.04
runs-on: self-hosted

needs:
- prepare
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
if: needs.prepare.outputs.new_release == 'true'

name: Dev Release
runs-on: ubuntu-20.04
runs-on: self-hosted

needs:
- prepare
Expand All @@ -97,7 +97,7 @@ jobs:
if: needs.prepare.outputs.new_release == 'true'

name: Draft Release
runs-on: ubuntu-20.04
runs-on: self-hosted

needs:
- prepare
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/prereleased.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ env:
jobs:
cancel_previous:
name: 'Cancel Previous Runs'
runs-on: ubuntu-20.04
runs-on: self-hosted
timeout-minutes: 3

steps:
Expand All @@ -37,7 +37,7 @@ jobs:

prepare:
name: Prepare
runs-on: ubuntu-20.04
runs-on: self-hosted

needs:
- cancel_previous
Expand All @@ -53,7 +53,7 @@ jobs:

build:
name: Build
runs-on: ubuntu-20.04
runs-on: self-hosted

needs:
- prepare
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:

update-manifests:
name: Update Manifests
runs-on: ubuntu-20.04
runs-on: self-hosted

needs:
- prepare
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
build:
name: Build
runs-on: ubuntu-20.04
runs-on: self-hosted

steps:
- uses: actions/checkout@v3
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/released.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ env:
jobs:
cancel_previous:
name: 'Cancel Previous Runs'
runs-on: ubuntu-20.04
runs-on: self-hosted
timeout-minutes: 3

steps:
Expand All @@ -37,7 +37,7 @@ jobs:

prepare:
name: Prepare
runs-on: ubuntu-20.04
runs-on: self-hosted

needs:
- cancel_previous
Expand All @@ -60,7 +60,7 @@ jobs:

docker-tag:
name: Docker Tag and Push
runs-on: ubuntu-20.04
runs-on: self-hosted

needs:
- prepare
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
update-manifests:
name: Update Manifests
runs-on: ubuntu-20.04
runs-on: self-hosted

needs:
- prepare
Expand Down

0 comments on commit 428e9f1

Please sign in to comment.