Skip to content

Commit

Permalink
fix: use correct image ref to run container
Browse files Browse the repository at this point in the history
  • Loading branch information
theseion committed May 18, 2024
1 parent 4fcc169 commit 0b64bcf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,9 @@ jobs:

- name: Run container
run: |
image_ref="$(docker images --filter reference='${REPO}:*' --format '{{.Repository}}:{{.Tag}}' | head -1)"
echo "Starting container"
docker run --pull "never" -d --name albedo-test "${REPO}:0"
docker run --pull "never" -d --name albedo-test "${image_ref}"
docker logs albedo-test
- name: Verify container
Expand Down

0 comments on commit 0b64bcf

Please sign in to comment.