We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c34348 commit 62ceee8Copy full SHA for 62ceee8
.github/workflows/release.yml
@@ -3,17 +3,15 @@ name: Release
3
on:
4
push:
5
tags:
6
- - 'v*.*.*'
7
- branches:
8
- - main # Only trigger on main branch
+ - 'v*.*.*' # Only trigger on version tags
9
10
jobs:
11
release:
12
name: Build and Release
13
runs-on: ubuntu-latest
14
15
- # Double-check we're on main branch
16
- if: github.ref_name == 'main' || startsWith(github.ref, 'refs/tags/')
+ # Only run if triggered by a tag
+ if: startsWith(github.ref, 'refs/tags/')
17
18
steps:
19
- name: Checkout code
@@ -55,6 +53,8 @@ jobs:
55
53
2. Extract to `World of Warcraft/Interface/AddOns/`
56
54
3. Restart WoW or `/reload`
57
+ The ZIP contains a `ConsumableManager` folder ready to use.
+
58
### Files Included
59
- Bindings.xml
60
- ConsumableManager.lua
0 commit comments