fix(CI): Ensure eluna is installed for acore-docker (#17530)

This commit is contained in:
Mike Delago
2023-10-18 07:04:42 -07:00
committed by GitHub
parent 574a877821
commit ed9f359328

View File

@@ -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