Skip to content

Commit 250ea01

Browse files
committed
fix: cleanup
1 parent c482786 commit 250ea01

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/deploy-argocd.yml

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches:
66
- main
7-
- mq-docker-pre-main
87

98
concurrency:
109
group: upload-manifest-${{ github.head_ref || github.run_id }}

scripts/ci/docker/generate-tag.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function getArtifactname() {
6262
}
6363

6464
function getTypeOfDeployment() {
65-
if (targetBranch === 'main' || targetBranch == 'mq-docker-pre-main') {
65+
if (targetBranch === 'main') {
6666
return {
6767
dev: true,
6868
prod: false,

scripts/ci/docker/get-data.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ function getBranch() {
130130
}
131131

132132
function getTypeOfDeployment() {
133-
if (branch === 'main' || branch == 'mq-docker-pre-main') {
133+
if (branch === 'main') {
134134
return {
135135
dev: true,
136136
staging: false,

0 commit comments

Comments
 (0)