Skip to content

Commit

Permalink
chore(workflows): use self-hosted runner
Browse files Browse the repository at this point in the history
  • Loading branch information
lcapka committed Feb 14, 2025
1 parent 38f5919 commit 3458574
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-targets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }} # checkout the correct branch name
fetch-depth: 0
fetch-tags: true

- id: set-env
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/helm-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ on:

jobs:
publish:
runs-on: ubuntu-latest
runs-on: self-hosted
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: checkout
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }} # checkout the correct branch name
fetch-depth: 0
fetch-tags: true

# Run the script only if there are changes in the folders ./charts/ or ./deploy/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
- "*"
jobs:
lint:
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 3458574

Please sign in to comment.