Skip to content
This repository was archived by the owner on Aug 12, 2025. It is now read-only.

Commit 4e15ac1

Browse files
committed
fix-cd
1 parent 16281e0 commit 4e15ac1

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,7 @@ jobs:
4848
- name: hub login
4949
if: (github.event_name == 'push' && endsWith(github.ref,'/master')) || (github.event_name == 'create' && startsWith(github.ref,'refs/tags/'))
5050
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
51-
- name: deploy-tag # when merged into master, tag master and push - ideally, this would be a separate job, but you cannot share docker build cache between jobs
52-
if: github.event_name == 'push' && endsWith(github.ref,'/master')
53-
run: make cd CONFIRM=true
54-
- name: deploy-master # when merged into master, tag master and push - ideally, this would be a separate job, but you cannot share docker build cache between jobs
51+
- name: deploy # when merged into master, tag master and push - ideally, this would be a separate job, but you cannot share docker build cache between jobs
5552
if: github.event_name == 'push' && endsWith(github.ref,'/master')
5653
run: make cd CONFIRM=true BRANCH_NAME=master
5754
- name: release # when based on a tag, tag master and push - ideally, this would be a separate job, but you cannot share docker build cache between jobs

0 commit comments

Comments
 (0)