Skip to content

Commit

Permalink
fix: extensions image push was missed
Browse files Browse the repository at this point in the history
Push the `extensions` image, this was missed when the CI was moved from
drone to GitHub actions.

Signed-off-by: Noel Georgi <[email protected]>
  • Loading branch information
frezbo committed Nov 22, 2023
1 parent cc5ccea commit 067c3b7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
#
# Generated on 2023-11-21T11:31:57Z by kres latest.
# Generated on 2023-11-22T14:00:12Z by kres latest.

name: default
concurrency:
Expand Down Expand Up @@ -89,6 +89,12 @@ jobs:
})
return resp.data.labels.map(label => label.name)
- name: extensions
if: github.event_name != 'pull_request'
env:
PUSH: "true"
run: |
make extensions
- name: release-notes
if: startsWith(github.ref, 'refs/tags/')
run: |
Expand Down
5 changes: 5 additions & 0 deletions .kres.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ spec:
script:
- |
@$(MAKE) docker-$@ TARGET_ARGS="--tag=$(EXTENSIONS_IMAGE_REF) --push=$(PUSH)"
ghaction:
enabled: true
condition: except-pull-request
environment:
PUSH: true
---
kind: custom.Step
name: extensions-metadata
Expand Down

0 comments on commit 067c3b7

Please sign in to comment.