Skip to content

Commit

Permalink
Fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
cedbossneo committed May 16, 2024
1 parent c0b9423 commit f6317ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/docker-publish-custom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ name: Custom
# documentation.

on:
schedule:
- cron: '30,0 * * * *'
workflow_dispatch:
push:
branches: [ "cedbossneo" ]
Expand Down Expand Up @@ -128,7 +126,7 @@ jobs:
- name: Create manifest list and push
working-directory: /tmp/digests
run: |
docker buildx imagetools create ${{ env.REGISTRY_IMAGE }}:custom \
docker buildx imagetools create -t ${{ env.REGISTRY_IMAGE }}:custom \
$(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *)
- name: Inspect image
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-publish-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ jobs:
- name: Create manifest list and push
working-directory: /tmp/digests
run: |
docker buildx imagetools create ${{ env.REGISTRY_IMAGE }}:cedbossneo \
docker buildx imagetools create -t ${{ env.REGISTRY_IMAGE }}:cedbossneo \
$(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *)
docker buildx imagetools create ${{ env.REGISTRY_IMAGE }}:main \
docker buildx imagetools create -t ${{ env.REGISTRY_IMAGE }}:main \
$(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *)
- name: Inspect image
run: |
Expand Down

0 comments on commit f6317ed

Please sign in to comment.