-
Notifications
You must be signed in to change notification settings - Fork 19
60 lines (53 loc) · 1.58 KB
/
release.yml
File metadata and controls
60 lines (53 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Release
permissions:
contents: write
on:
push:
tags:
- '*'
jobs:
login-messages:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/wow_login_messages-v')
steps:
- uses: actions/checkout@v4
- uses: taiki-e/create-gh-release-action@v1
with:
changelog: wow_login_messages/CHANGELOG.md
token: ${{ secrets.GITHUB_TOKEN }}
world-messages:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/wow_world_messages-v')
steps:
- uses: actions/checkout@v4
- uses: taiki-e/create-gh-release-action@v1
with:
changelog: wow_world_messages/CHANGELOG.md
token: ${{ secrets.GITHUB_TOKEN }}
world-base:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/wow_world_base-v')
steps:
- uses: actions/checkout@v4
- uses: taiki-e/create-gh-release-action@v1
with:
changelog: wow_world_base/CHANGELOG.md
token: ${{ secrets.GITHUB_TOKEN }}
items:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/wow_items-v')
steps:
- uses: actions/checkout@v4
- uses: taiki-e/create-gh-release-action@v1
with:
changelog: wow_items/CHANGELOG.md
token: ${{ secrets.GITHUB_TOKEN }}
spells:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/wow_spells-v')
steps:
- uses: actions/checkout@v4
- uses: taiki-e/create-gh-release-action@v1
with:
changelog: wow_spells/CHANGELOG.md
token: ${{ secrets.GITHUB_TOKEN }}