File tree 2 files changed +47
-3
lines changed
2 files changed +47
-3
lines changed Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ # Sequence of patterns matched against refs/tags
4
+ tags :
5
+ - ' v2.2.9' # Push events to matching v*, i.e. v1.0, v20.15.10
6
+
7
+ name : Create Release
8
+
9
+ jobs :
10
+ build :
11
+ name : Create Release
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - name : Checkout code
15
+ uses : actions/checkout@v2
16
+ - name : Create release
17
+ id : create_release
18
+ uses : actions/create-release@v1
19
+ env :
20
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
21
+ with :
22
+ tag_name : ${{ github.ref }}
23
+ release_name : Release ${{ github.ref }}
24
+ body : |
25
+ Changes in this Release
26
+ - First Change
27
+ - Second Change
28
+ draft : true
29
+ prerelease : false
30
+ - name : Upload release asset
31
+ uses : actions/upload-release-asset@v1
32
+ env :
33
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
34
+ with :
35
+ upload_url : ${{ steps.create_release.outputs.upload_url }}
36
+ asset_path : ./path/to/asset.zip
37
+ asset_name : asset.zip
38
+ asset_content_type : application/zip
39
+ - name : Publish release
40
+ uses : StuYarrow/publish-release@v1.1.2
41
+ env :
42
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
43
+ with :
44
+ id : ${{ steps.create_release.outputs.id }}
Original file line number Diff line number Diff line change @@ -46,19 +46,19 @@ generate_features:
46
46
47
47
increment_sub_version :
48
48
@echo " Incrementing sub version from $( VERSION) to $( UPDATE_SUB_VERSION) "
49
- sed -i " s/$( VERSION) /$( UPDATE_SUB_VERSION) /" mysqltuner.pl * .md
49
+ sed -i " s/$( VERSION) /$( UPDATE_SUB_VERSION) /" mysqltuner.pl * .md .github/workflows/ * .yml
50
50
git add ./* .md ./mysqltuner.pl
51
51
git commit -m " Generate $( UPDATE_SUB_VERSION) sub version at $( shell date --iso=seconds) "
52
52
53
53
increment_minor_version :
54
54
@echo " Incrementing minor version from $( VERSION) to $( UPDATE_MINOR_VERSION) "
55
- sed -i " s/$( VERSION) /$( UPDATE_MINOR_VERSION) /" mysqltuner.pl * .md
55
+ sed -i " s/$( VERSION) /$( UPDATE_MINOR_VERSION) /" mysqltuner.pl * .md .github/workflows/ * .yml
56
56
git add ./* .md ./mysqltuner.pl
57
57
git commit -m " Generate $( UPDATE_SUB_VERSION) minor version at $( shell date --iso=seconds) "
58
58
59
59
increment_major_version :
60
60
@echo " Incrementing major version from $( VERSION) to $( UPDATE_MAJOR_VERSION) "
61
- sed -i " s/$( VERSION) /$( UPDATE_MAJOR_VERSION) /" mysqltuner.pl * .md
61
+ sed -i " s/$( VERSION) /$( UPDATE_MAJOR_VERSION) /" mysqltuner.pl * .md .github/workflows/ * .yml
62
62
git add ./* .md ./mysqltuner.pl
63
63
git commit -m " Generate $( UPDATE_SUB_VERSION) major version at $( shell date --iso=seconds) "
64
64
You can’t perform that action at this time.
0 commit comments