From e988eb519b3aa9973b21f8d668e00a127f0a07ab Mon Sep 17 00:00:00 2001 From: Guillaume Bouvignies Date: Thu, 8 Feb 2024 19:09:03 +0100 Subject: [PATCH] chore: EE private repo fetched on commit hash (#3183) * chore: EE private repo fetched on commit hash * revert docker-image.yml * repo_ref -> ee_repo_ref --- .github/workflows/docker-image.yml | 5 +++++ backend/ee-repo-ref.txt | 1 + 2 files changed, 6 insertions(+) create mode 100644 backend/ee-repo-ref.txt diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index a65c0e9942..367f81af61 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -81,10 +81,15 @@ jobs: with: fetch-depth: 0 + - name: Read EE repo commit hash + run: | + echo "ee_repo_ref=$(cat ./backend/ee-repo-ref.txt)" >> "$GITHUB_ENV" + - uses: actions/checkout@v3 with: repository: windmill-labs/windmill-ee-private path: ./windmill-ee-private + ref: ${{ env.ee_repo_ref }} token: ${{ secrets.WINDMILL_EE_PRIVATE_ACCESS }} fetch-depth: 0 diff --git a/backend/ee-repo-ref.txt b/backend/ee-repo-ref.txt new file mode 100644 index 0000000000..45cf577e0e --- /dev/null +++ b/backend/ee-repo-ref.txt @@ -0,0 +1 @@ +cf93edfa472f71949a27dccc585ccf7c1bd429e6 \ No newline at end of file