summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMike Delago <32778141+michaeldelago@users.noreply.github.com>2023-10-18 07:04:34 -0700
committerGitHub <noreply@github.com>2023-10-18 16:04:34 +0200
commit574a8778213afd78aae2fbad6c551fce51608825 (patch)
treeee7bc872527611db3222b9a7d8f76a8cea05a2b4 /.github
parent39db3de5af9b244e34d228ea0047761893632c04 (diff)
fix(CI): check ref name instead of non-existent step (#17529)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/docker_build.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/docker_build.yml b/.github/workflows/docker_build.yml
index b3a9822cb2..420a0e3d8c 100644
--- a/.github/workflows/docker_build.yml
+++ b/.github/workflows/docker_build.yml
@@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@v4
- name: Login to Docker Hub
- if: github.repository == 'azerothcore/azerothcore-wotlk' && steps.extract_branch.outputs.branch == 'master'
+ if: github.repository == 'azerothcore/azerothcore-wotlk' && github.ref_name == 'master'
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}