Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Commit d3c16d1

Browse files
authored
Merge pull request #171 from stacklok/fix_more_build
fix: use regular workers for image builds
2 parents b16e8c0 + 6b6f3c9 commit d3c16d1

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

.github/workflows/image-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414
jobs:
1515
docker-image:
1616
name: Check docker image build
17-
runs-on: codegate-pipeline
17+
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout
2020
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4

.github/workflows/image-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
jobs:
1717
build-image:
1818
name: Build Docker image
19-
runs-on: codegate-pipeline
19+
runs-on: ubuntu-latest
2020
permissions:
2121
contents: read
2222
packages: write

.github/workflows/import_packages.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,6 @@ jobs:
2525
python -m pip install --upgrade pip
2626
pip install "."
2727
28-
- name: Download models
29-
run: |
30-
git lfs install
31-
git lfs pull
32-
3328
- name: Download artifact
3429
if: ${{ github.event.inputs.enable_artifact_download == 'true' }}
3530
id: download-artifact

0 commit comments

Comments
 (0)