This repository was archived by the owner on Jun 5, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -24,10 +24,25 @@ jobs:
24
24
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
25
25
- name : Set up Docker Buildx
26
26
uses : docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3
27
+ - name : Download artifact
28
+ id : download-artifact
29
+ uses : dawidd6/action-download-artifact@80620a5d27ce0ae443b965134db88467fc607b43 # v7
30
+ with :
31
+ github_token : ${{ github.token }}
32
+ workflow : " .github/workflows/import_packages.yml"
33
+ workflow_conclusion : success
34
+ name : sqlite_data
35
+ name_is_regexp : true
36
+ skip_unpack : false
37
+ if_no_artifact_found : ignore
27
38
- name : Fetch latest release URL
28
39
id : fetch_release_url
29
40
run : |
30
41
echo "LATEST_RELEASE=$(curl -s "https://github.com/api/repos/stacklok/codegate-ui/releases/latest" | jq -r '.zipball_url')" >> $GITHUB_ENV
42
+ - name : Download git lfs dependencies
43
+ run : |
44
+ git lfs install
45
+ git lfs pull
31
46
- name : Test build on x86
32
47
id : docker_build
33
48
uses : docker/build-push-action@67a2d409c0a876cbe6b11854e3e25193efe4e62d # v5
Original file line number Diff line number Diff line change 56
56
-p 8990:8990 \
57
57
-v "$(pwd)"/codegate_volume:/app/codegate_volume \
58
58
-e CODEGATE_APP_LOG_LEVEL=DEBUG \
59
- --restart unless-stopped ghcr.io/stacklok/codegate:latest
59
+ --restart unless-stopped $DOCKER_IMAGE
60
60
61
61
# Confirm the container started
62
62
echo "Container started:"
@@ -126,7 +126,7 @@ jobs:
126
126
run : |
127
127
poetry run python tests/integration/integration_tests.py
128
128
129
- - name : Print the container logs (debugging)
129
+ - name : Print the container logs (useful for debugging)
130
130
if : always()
131
131
run : |
132
132
docker logs $CONTAINER_NAME
You can’t perform that action at this time.
0 commit comments