Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,19 @@ jobs:
PUSH: "true"
run: |
make image-omni IMAGE_TAG=latest
- name: Check if tag is stable
id: check-stable-tag
run: |
if [[ ${{ github.event.ref }} =~ ^refs/tags/v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
echo "match=true" >> $GITHUB_OUTPUT
fi
- name: push-omni-stable
if: steps.check-stable-tag.outputs.match == 'true'
env:
PLATFORM: linux/amd64,linux/arm64
PUSH: "true"
run: |
make image-omni IMAGE_TAG=stable
- name: omnictl
run: |
make omnictl
Expand Down