diff options
author | Kitzunu <24550914+Kitzunu@users.noreply.github.com> | 2021-10-14 05:00:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-13 20:00:41 -0700 |
commit | 5fafa92594402000a2e5c648da4b74f520e6eca9 (patch) | |
tree | 6d753bd9cb91cd6ababfbb0f794c1ccc6f435630 /.github | |
parent | 3cfb02fcae238496719578ff0e84e7c66904dbd2 (diff) |
fix(CI/Docker): Run build on label (#8487)
* fix(Core/Player): Prevent exploit to loot items that are already looted
* https://github.com/TrinityCore/TrinityCore/commit/586c00fe2e226da99968ebe763d3226c6134658c
Co-Authored-By: Gildor <521036+Jildor@users.noreply.github.com>
* Revert "fix(Core/Player): Prevent exploit to loot items that are already looted"
This reverts commit 8376bba57925eda08e72d72e04fe6ce39fa354e2.
* refactor(Core/Misc): Update attributes to blizzlike
* Revert "refactor(Core/Misc): Update attributes to blizzlike"
This reverts commit ffc5dfc19e740b4a8396972a24ebfd1d8fc4bbc0.
* fix(Core/Spell): Remove ErrorCube visual
* cherry-pick https://github.com/trinitycore/trinitycore/commit/3b5014fdae
* cherry-pick small part of https://github.com/TrinityCore/TrinityCore/commit/f4f7e6324d6c99335bf3479f212edea1e5572f88
Co-Authored-By: Shauren <shauren.trinity@gmail.com>
Co-Authored-By: Treeston <14020072+treeston@users.noreply.github.com>
* Revert "fix(Core/Spell): Remove ErrorCube visual"
This reverts commit 52ff8915dfda9c905a4094e8974b73bbc21e8eab.
* chore(ci): Upgrade MySQL ver on Windows build
* Revert "chore(ci): Upgrade MySQL ver on Windows build"
This reverts commit 3b111997308671ffa090671c0bc8aadbf3ecd05e.
* fix(DB/Auth): Possible collation error
* Update docker_build.yml
Co-authored-by: Gildor <521036+Jildor@users.noreply.github.com>
Co-authored-by: Shauren <shauren.trinity@gmail.com>
Co-authored-by: Treeston <14020072+treeston@users.noreply.github.com>
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 f04eeb2314..74df29d11a 100644 --- a/.github/workflows/docker_build.yml +++ b/.github/workflows/docker_build.yml @@ -16,7 +16,7 @@ jobs: matrix: os: [ubuntu-20.04] runs-on: ${{ matrix.os }} - if: github.repository == 'azerothcore/azerothcore-wotlk' && github.event.label.name == 'run-build' || github.ref == 'refs/heads/master' + if: github.repository == 'azerothcore/azerothcore-wotlk' && ${{ github.event.label.name == 'run-build' }} env: COMPOSE_DOCKER_CLI_BUILD: 1 DOCKER_BUILDKIT: 1 |