File tree Expand file tree Collapse file tree 5 files changed +201
-182
lines changed Expand file tree Collapse file tree 5 files changed +201
-182
lines changed Original file line number Diff line number Diff line change
1
+ name : Release on Merge to Master
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+
8
+ jobs :
9
+ create_release :
10
+ runs-on : ubuntu-latest
11
+
12
+ steps :
13
+ - name : Checkout code
14
+ uses : actions/checkout@v3
15
+
16
+ - name : Get version from README
17
+ id : get_version
18
+ run : |
19
+ first_line=$(head -n 1 README.md)
20
+ version=$(echo $first_line | grep -oP '(?<=—\s)v[0-9]+\.[0-9]+\.[0-9]+')
21
+ if [ -z "$version" ]; then
22
+ echo "Version non trouvée dans README.md"
23
+ exit 1
24
+ fi
25
+ clean_version=$(echo $version | sed 's/^v//')
26
+ echo "version=${clean_version}" >> $GITHUB_ENV
27
+
28
+ - name : Create Release
29
+ uses : actions/create-release@v1
30
+ env :
31
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
32
+ with :
33
+ tag_name : ${{ env.version }}
34
+ release_name : ${{ env.version }}
35
+ draft : false
36
+ prerelease : false
Original file line number Diff line number Diff line change 4
4
5
5
# files
6
6
* .code-workspace
7
+ * .sh
8
+ old-main.lua
7
9
8
10
# Compiled Lua sources
9
11
luac.out
Original file line number Diff line number Diff line change 16
16
17
17
18
18
> Released
19
+ ## 2.5.2
20
+ - Code refactor
21
+
19
22
## 2.5.1
20
23
- Add new check if gossip event is flaged quest, conv or bag
21
24
- Fix if gossif quest have 2 or more possible select
Original file line number Diff line number Diff line change 1
- # AutoQuests — v2.5.1
1
+ # AutoQuests — v2.5.2
2
2
<div align =" center " >
3
3
<img src =" https://raw.githubusercontent.com/unverz06/AutoQuests/readme/src/AutoQuest_banner.jpg " alt =" banner " width =" 100% " >
4
4
</div >
You can’t perform that action at this time.
0 commit comments