We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c482786 commit 250ea01Copy full SHA for 250ea01
.github/workflows/deploy-argocd.yml
@@ -4,7 +4,6 @@ on:
4
push:
5
branches:
6
- main
7
- - mq-docker-pre-main
8
9
concurrency:
10
group: upload-manifest-${{ github.head_ref || github.run_id }}
scripts/ci/docker/generate-tag.mjs
@@ -62,7 +62,7 @@ function getArtifactname() {
62
}
63
64
function getTypeOfDeployment() {
65
- if (targetBranch === 'main' || targetBranch == 'mq-docker-pre-main') {
+ if (targetBranch === 'main') {
66
return {
67
dev: true,
68
prod: false,
scripts/ci/docker/get-data.mjs
@@ -130,7 +130,7 @@ function getBranch() {
130
131
132
133
- if (branch === 'main' || branch == 'mq-docker-pre-main') {
+ if (branch === 'main') {
134
135
136
staging: false,
0 commit comments