Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

acryldata/datahub - Disable docker publishing from private repo #281

Merged
merged 1 commit into from
Mar 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 15 additions & 17 deletions .github/workflows/docker-unified.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
name: Docker Build, Scan, Test
on:
push:
branches:
- master
pull_request:
branches:
- "**"
release:
types: [published]
#### IMPORTANT ####
#### THIS IS A CHANGE TO PREVENT OSS QUICKSTART INSTABILITY, DO NOT OVERWRITE THIS CHANGE IN MERGES ####
#### IMPORTANT ####
on: workflow_dispatch
#### IMPORTANT ####
#### END CHANGES ####
#### IMPORTANT ####

concurrency:
# Using `github.run_id` (unique val) instead of `github.ref` here
Expand All @@ -17,17 +15,17 @@ concurrency:
cancel-in-progress: true

env:
DATAHUB_GMS_IMAGE: "acryldata/datahub-gms"
DATAHUB_FRONTEND_IMAGE: "acryldata/datahub-frontend-react"
DATAHUB_MAE_CONSUMER_IMAGE: "acryldata/datahub-mae-consumer"
DATAHUB_MCE_CONSUMER_IMAGE: "acryldata/datahub-mce-consumer"
DATAHUB_KAFKA_SETUP_IMAGE: "acryldata/datahub-kafka-setup"
DATAHUB_ELASTIC_SETUP_IMAGE: "acryldata/datahub-elasticsearch-setup"
DATAHUB_INGESTION_BASE_IMAGE: "acryldata/datahub-ingestion-base"
DATAHUB_INGESTION_IMAGE: "acryldata/datahub-ingestion"
#### IMPORTANT ####
#### THIS IS A CHANGE TO PREVENT OSS QUICKSTART INSTABILITY, DO NOT OVERWRITE THIS CHANGE IN MERGES ####
#### IMPORTANT ####
DATAHUB_GMS_IMAGE: "acryldata/acryl-datahub-gms"
DATAHUB_FRONTEND_IMAGE: "acryldata/acryl-datahub-frontend-react"
DATAHUB_MAE_CONSUMER_IMAGE: "acryldata/acryl-datahub-mae-consumer"
DATAHUB_MCE_CONSUMER_IMAGE: "acryldata/acryl-datahub-mce-consumer"
DATAHUB_KAFKA_SETUP_IMAGE: "acryldata/acryl-datahub-kafka-setup"
DATAHUB_ELASTIC_SETUP_IMAGE: "acryldata/acryl-datahub-elasticsearch-setup"
DATAHUB_INGESTION_BASE_IMAGE: "acryldata/acryl-datahub-ingestion-base"
DATAHUB_INGESTION_IMAGE: "acryldata/acryl-datahub-ingestion"
DATAHUB_MYSQL_SETUP_IMAGE: "acryldata/acryl-datahub-mysql-setup"
DATAHUB_UPGRADE_IMAGE: "acryldata/acryl-datahub-upgrade"
#### IMPORTANT ####
Expand Down
Loading