From a9ee80bf3ca93eac6ca915ffcb11ae9bff940e65 Mon Sep 17 00:00:00 2001 From: Yuvraj Date: Tue, 15 Jun 2021 13:13:19 +0530 Subject: [PATCH] Added registry name in env for serialize (#293) Signed-off-by: Yuvraj --- .github/workflows/master.yml | 6 ++++++ .github/workflows/pull_request.yml | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index f26cbe2672..c49ab5b6a7 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -36,6 +36,8 @@ jobs: path: /tmp/release-snacks-core/ key: release-snacks-core - name: Generate Serialize proto + env: + REGISTRY: "ghcr.io/flyteorg" run: | make -C cookbook/core serialize mkdir -p cookbook/release-snacks /tmp/release-snacks-core/ @@ -54,6 +56,8 @@ jobs: path: /tmp/release-snacks-integrations/ key: release-snacks-plugins - name: Generate Serialize proto + env: + REGISTRY: "ghcr.io/flyteorg" run: | make -C cookbook/integrations serialize mkdir -p cookbook/release-snacks /tmp/release-snacks-integrations/ @@ -72,6 +76,8 @@ jobs: path: /tmp/release-snacks-case-studies/ key: release-snacks-case-studies - name: Generate Serialize proto + env: + REGISTRY: "ghcr.io/flyteorg" run: | make -C cookbook/case_studies serialize mkdir -p cookbook/release-snacks /tmp/release-snacks-case-studies/ diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 243e4b5a4a..b177d473f8 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -16,6 +16,8 @@ jobs: path: /tmp/release-snacks-core/ key: release-snacks-core - name: Generate Serialize proto + env: + REGISTRY : "ghcr.io/flyteorg" run: | make -C cookbook/core serialize integrations-build: @@ -30,6 +32,8 @@ jobs: path: /tmp/release-snacks-integrations/ key: release-snacks-plugins - name: Generate Serialize proto + env: + REGISTRY: "ghcr.io/flyteorg" run: | make -C cookbook/integrations serialize case_studies-build: @@ -44,5 +48,7 @@ jobs: path: /tmp/release-snacks-case-studies/ key: release-snacks-case-studies - name: Generate Serialize proto + env: + REGISTRY: "ghcr.io/flyteorg" run: | make -C cookbook/case_studies serialize \ No newline at end of file