Skip to content

Commit

Permalink
Merge pull request #116 from garethahealy/main
Browse files Browse the repository at this point in the history
fixed ci
  • Loading branch information
garethahealy authored Nov 20, 2023
2 parents 3bab4a8 + fdf6ba5 commit 0b15eb5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 33 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/get-image-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,13 @@ jobs:
echo "MINOR_VERSION missmatch"
exit 1
fi
expected_tags=("latest" "v1.32.1" "v1.32")
if [[ "${GITHUB_REF}" =~ refs/tags/(.*) ]]; then
expected_tags+=("git-${BASH_REMATCH[1]}")
fi
if [[ "${tags[*]}" != "latest v1.32.1 v1.32" ]]; then
if [[ "${tags[*]}" != "${expected_tags[*]}" ]]; then
echo "IMAGE_TAGS missmatch"
exit 1
fi
31 changes: 0 additions & 31 deletions .github/workflows/s2i.yaml

This file was deleted.

3 changes: 2 additions & 1 deletion disconnected-csv/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM quay.io/skopeo/stable:v1@sha256:baaaf8c5fdfa71a7c5ce67826998feccff5b90b1a749825f19789d1a473c3d8a
# renovate: datasource=github-releases depName=containers/skopeo
FROM quay.io/skopeo/stable:v1.13.3

LABEL version="1.0.0"
LABEL repository="http://github.com/redhat-cop/github-actions"
Expand Down

0 comments on commit 0b15eb5

Please sign in to comment.