diff options
author | Mike Delago <32778141+michaeldelago@users.noreply.github.com> | 2023-10-19 12:35:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-19 15:35:56 -0400 |
commit | 3537f0852597d00fcfd0ff7c1c6d2aa252a89952 (patch) | |
tree | 5e9da54f4a01c45537f8bc2c58f54dda2f3b031b /.github | |
parent | c7324f30662d389949ff376e3c0012368a6a3523 (diff) |
fix(ci): docker build double quotes typo (#17541)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/docker_build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/docker_build.yml b/.github/workflows/docker_build.yml index 4e2f5dd036..ffc3104a7e 100644 --- a/.github/workflows/docker_build.yml +++ b/.github/workflows/docker_build.yml @@ -100,7 +100,7 @@ jobs: # 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' + if: github.repository == 'azerothcore/azerothcore-wotlk' && github.ref_name == 'master' uses: actions/checkout@v4 with: repository: azerothcore/mod-eluna |