Skip to content

Commit f55e762

Browse files
committed
fix make var name typo. don't run e2e tests when only tag have been pushed.
1 parent 540e58f commit f55e762

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,15 @@ jobs:
6565

6666
- name: Build and push application image
6767
run: |
68-
make docker-buildx IMG_TAG_BASE="ghcr.io/${{ github.repository }}" VERSION="${{ steps.compute_version.outputs.IMAGE_TAG }}"
68+
make docker-buildx IMAGE_TAG_BASE="ghcr.io/${{ github.repository }}" VERSION="${{ steps.compute_version.outputs.IMAGE_TAG }}"
6969
7070
# - name: Build and push OLM bundle image
7171
# run: |
72-
# make bundle bundle-build bundle-push IMG_TAG_BASE="ghcr.io/${{ github.repository }}" VERSION="${{ steps.compute_version.outputs.IMAGE_TAG }}"
72+
# make bundle bundle-build bundle-push IMAGE_TAG_BASE="ghcr.io/${{ github.repository }}" VERSION="${{ steps.compute_version.outputs.IMAGE_TAG }}"
7373

7474
# - name: Build and push OLM catalog image
7575
# run: |
76-
# make catalog-build catalog-push IMG_TAG_BASE="ghcr.io/${{ github.repository }}" VERSION="${{ steps.compute_version.outputs.IMAGE_TAG }}"
76+
# make catalog-build catalog-push IMAGE_TAG_BASE="ghcr.io/${{ github.repository }}" VERSION="${{ steps.compute_version.outputs.IMAGE_TAG }}"
7777

7878
- name: Create GitHub Release
7979
uses: softprops/action-gh-release@v2

.github/workflows/test-e2e.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ jobs:
77
test-e2e:
88
name: Run e2e tests
99
runs-on: ubuntu-latest
10+
# don't run when only tags have been pushed
11+
if: github.ref_type != 'tag'
1012
steps:
1113
- name: Clone the code
1214
uses: actions/checkout@v6

0 commit comments

Comments
 (0)