Skip to content

Commit 1f2a1e1

Browse files
authored
Merge pull request #16 from stakater/pr-testing
Fixed env export
2 parents 672bc30 + 2136278 commit 1f2a1e1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/_push.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ jobs:
165165
outputs:
166166
new_tag: ${{ steps.generate_tag.outputs.new_tag }}
167167
new_tag_without_v: ${{ steps.generate_tag_without_v.outputs.new_tag }}
168+
should_release_catalog: ${{ steps.check-catalog-changes.outputs.should_release_catalog }}
168169

169170
push-operator:
170171
name: Push operator to Container Registry
@@ -226,13 +227,13 @@ jobs:
226227
VERSION: ${{ needs.push-operator-setup.outputs.new_tag_without_v }}
227228

228229
- name: Build and Push Catalog
229-
if: env.should_release_catalog == 'true'
230+
if: ${{ needs.check-catalog-changes.outputs.should_release_catalog == 'true' }}
230231
run: make catalog-render catalog-build catalog-push
231232
env:
232233
VERSION: ${{ needs.push-operator-setup.outputs.new_tag_without_v }}
233234

234235
- name: Push Latest Tag
235-
if: env.should_release_catalog == 'true'
236+
if: ${{ needs.check-catalog-changes.outputs.should_release_catalog == 'true' }}
236237
uses: anothrNick/[email protected]
237238
env:
238239
GITHUB_TOKEN: ${{ secrets.ADMIN_TOKEN }}

catalog/channels.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
---
21
schema: olm.channel
32
package: uptimeguardian
43
name: preview

0 commit comments

Comments
 (0)