diff options
author | Mike Delago <32778141+michaeldelago@users.noreply.github.com> | 2023-10-18 07:04:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-18 16:04:42 +0200 |
commit | ed9f35932828424dce7f23dd664cd1543d719cb0 (patch) | |
tree | 4436775184942bf298d04f8b0093bd4fa331cf48 /.github | |
parent | 574a8778213afd78aae2fbad6c551fce51608825 (diff) |
fix(CI): Ensure eluna is installed for acore-docker (#17530)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/docker_build.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/docker_build.yml b/.github/workflows/docker_build.yml index 420a0e3d8c..4e2f5dd036 100644 --- a/.github/workflows/docker_build.yml +++ b/.github/workflows/docker_build.yml @@ -94,6 +94,18 @@ jobs: - uses: actions/checkout@v4 + # The containers created in this workflow are used by + # acore-docker, which has a dependency on mod-eluna. + # + # If you're wanting containers without mod-eluna, the best solution is to + # build them locally (such as with `docker compose build`) + - name: Download Eluna + if: github.repository == "azerothcore/azerothcore-wotlk" && github.ref_name == 'master' + uses: actions/checkout@v4 + with: + repository: azerothcore/mod-eluna + path: modules/mod-eluna + - name: Login to Docker Hub if: github.repository == 'azerothcore/azerothcore-wotlk' && github.ref_name == 'master' uses: docker/login-action@v1 |