generated from atampy25/smf-mod
-
Notifications
You must be signed in to change notification settings - Fork 0
205 lines (174 loc) · 8.87 KB
/
release.yml
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
name: Release
permissions:
contents: write
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
if: "!startsWith(github.ref, 'refs/tags/')"
steps:
- uses: actions/checkout@v2
with:
ref: "main"
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: |
npm install
- name: Create .releaserc
env:
REPO_URL: ${{ format('https://github.com/{0}.git', github.repository) }}
run: |
echo "{\"branches\":[\"main\"],\"plugins\":[[\"@semantic-release/commit-analyzer\",{\"preset\":\"conventionalcommits\",\"releaseRules\":[{\"type\":\"enhancement\",\"release\":\"minor\"}]}], \"semantic-release-export-data\"],\"repositoryUrl\":\"$REPO_URL\",\"tagFormat\":\"\${version}\"}" > .releaserc
- name: Get first commit
id: firstCommit
run: echo "FIRST_COMMIT=$(git rev-list --date-order main | tail -1)" >> $GITHUB_OUTPUT
- uses: mukunku/[email protected]
id: checkTag
with:
tag: "0.1.0"
- name: Create tag
if: ${{ steps.checkTag.outputs.exists == 'false' }}
uses: tvdias/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
tag: "0.1.0"
commit-sha: ${{ steps.firstCommit.outputs.FIRST_COMMIT }}
- name: Get new version
id: newVersion
run: npx --yes semantic-release --branches main --dry-run
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Get latest framework version
id: latestFramework
uses: pozetroninc/[email protected]
with:
repository: atampy25/simple-mod-framework
token: ${{ secrets.GITHUB_TOKEN }}
- name: Update manifest.json version
if: ${{ steps.newVersion.outputs.new-release-version }}
uses: jossef/action-set-json-field@v2
with:
file: "manifest.json"
field: "version"
value: ${{ steps.newVersion.outputs.new-release-version }}
- name: Update manifest.json frameworkVersion
if: ${{ steps.newVersion.outputs.new-release-version }}
uses: jossef/action-set-json-field@v2
with:
file: "manifest.json"
field: "frameworkVersion"
value: ${{ steps.latestFramework.outputs.release }}
- name: Update manifest.json updateCheck
if: ${{ steps.newVersion.outputs.new-release-version }}
uses: jossef/action-set-json-field@v2
with:
file: "manifest.json"
field: "updateCheck"
value: ${{ format('https://github.com/{0}/releases/latest/download/updates.json', github.repository) }}
- name: Get mod ID
if: ${{ steps.newVersion.outputs.new-release-version }}
id: modID
uses: notiz-dev/github-action-json-property@release
with:
path: "manifest.json"
prop_path: "id"
- name: Get mod name
if: ${{ steps.newVersion.outputs.new-release-version }}
id: modName
uses: notiz-dev/github-action-json-property@release
with:
path: "manifest.json"
prop_path: "name"
- name: Get mod description
if: ${{ steps.newVersion.outputs.new-release-version }}
id: modDesc
uses: notiz-dev/github-action-json-property@release
with:
path: "manifest.json"
prop_path: "description"
- name: Get mod authors
if: ${{ steps.newVersion.outputs.new-release-version }}
id: modAuthors
uses: notiz-dev/github-action-json-property@release
with:
path: "manifest.json"
prop_path: "authors"
- name: Read README.md
if: ${{ steps.newVersion.outputs.new-release-version }}
id: readme
uses: juliangruber/[email protected]
with:
path: README.md
- name: Auto-generate README
if: ${{ steps.newVersion.outputs.new-release-version && (contains(steps.readme.outputs.content, 'Simple Mod Framework mod template') || contains(steps.readme.outputs.content, 'This README was automatically generated from the mod''s manifest.')) }}
uses: DamianReeves/[email protected]
with:
path: README.md
contents: |
# ${{ steps.modName.outputs.prop }}
${{ steps.modDesc.outputs.prop }}
[Install](https://hitman-resources.netlify.app/smf-install-link/${{ format('https://github.com/{0}/releases/latest/download/mod.framework.zip', github.repository) }}) | [Download](${{ format('https://github.com/{0}/releases/latest/download/mod.framework.zip', github.repository) }})
---
`${{ steps.modID.outputs.prop }}` v${{ steps.newVersion.outputs.new-release-version }}, by ${{ join(fromJSON(steps.modAuthors.outputs.prop), ', ') }}. This README was automatically generated from the mod's manifest.
write-mode: overwrite
- name: Format
if: ${{ steps.newVersion.outputs.new-release-version }}
uses: actionsx/prettier@v2
with:
args: --write .
- name: Commit changes
if: ${{ steps.newVersion.outputs.new-release-version }}
uses: EndBug/[email protected]
with:
default_author: github_actions
message: "chore: mod update"
tag: ${{ steps.newVersion.outputs.new-release-version }}
- name: Generate changelog
if: ${{ steps.newVersion.outputs.new-release-version }}
id: changelog
uses: loopwerk/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
config_file: .github/tag-changelog-config.js
exclude_types: other,docs,chore,build,amend,refactor
- name: Copy files
if: ${{ steps.newVersion.outputs.new-release-version }}
env:
TARGETDIR: ${{ steps.modID.outputs.prop }}
run: |
mkdir $TARGETDIR
for file in *;do test "$file" != "$TARGETDIR" && cp -r "$file" "$TARGETDIR/";done
rm -rf "$TARGETDIR/node_modules"
rm "$TARGETDIR/package.json" "$TARGETDIR/package-lock.json" "$TARGETDIR/README.md"
- name: Create ZIP
if: ${{ steps.newVersion.outputs.new-release-version }}
uses: TheDoctor0/zip-release@4fb9e4ff72847dd3d1c111cf63834e353ed7cb3d
with:
filename: mod.framework.zip
path: ${{ steps.modID.outputs.prop }}
- name: Create updates.json
if: ${{ steps.newVersion.outputs.new-release-version }}
env:
VERSION: ${{ toJSON(steps.newVersion.outputs.new-release-version) }}
CHANGELOG: ${{ toJSON(steps.changelog.outputs.changes) }}
URL: ${{ format('https://github.com/{0}/releases/latest/download/mod.framework.zip', github.repository) }}
run: |
echo "{\"version\":$VERSION,\"changelog\":$CHANGELOG,\"url\":\"$URL\"}" > updates.json
- name: Release
if: ${{ steps.newVersion.outputs.new-release-version }}
uses: softprops/action-gh-release@v1
with:
name: ${{ steps.newVersion.outputs.new-release-version }}
body: "[Install](https://hitman-resources.netlify.app/smf-install-link/${{ format('https://github.com/{0}/releases/download/{1}/mod.framework.zip', github.repository, steps.newVersion.outputs.new-release-version) }}) | [Download](${{ format('https://github.com/{0}/releases/download/{1}/mod.framework.zip', github.repository, steps.newVersion.outputs.new-release-version) }})\n\n${{ steps.changelog.outputs.changes }}"
tag_name: ${{ steps.newVersion.outputs.new-release-version }}
repository: ${{ github.repository }}
files: |
mod.framework.zip
updates.json