File tree Expand file tree Collapse file tree 4 files changed +48
-8
lines changed Expand file tree Collapse file tree 4 files changed +48
-8
lines changed Original file line number Diff line number Diff line change
1
+ name : Release
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - ' *'
7
+
8
+ jobs :
9
+ release :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - name : Checkout
13
+ uses : actions/checkout@v2
14
+ - name : Get the repository name
15
+ id : get_repo_name
16
+ run : echo ::set-output name=REPOSITORY_NAME::$(echo "$GITHUB_REPOSITORY" | awk -F / '{print $2}')
17
+ - name : Get the version
18
+ id : get_version
19
+ run : echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}
20
+ - name : Create Zip File
21
+ uses : thedoctor0/zip-release@master
22
+ if : startsWith(github.ref, 'refs/tags/')
23
+ with :
24
+ filename : ' ${{ steps.get_repo_name.outputs.REPOSITORY_NAME }}.zip'
25
+ exclusions : ' *.git*
26
+ /*node_modules/*
27
+ *.lock
28
+ .editorconfig
29
+ .distignore
30
+ src
31
+ assets/src'
32
+ - name : Release
33
+ uses : softprops/action-gh-release@v1
34
+ if : startsWith(github.ref, 'refs/tags/')
35
+ with :
36
+ files : ${{ steps.get_repo_name.outputs.REPOSITORY_NAME }}.zip
37
+ name : Version ${{ steps.get_version.outputs.VERSION }}
38
+ env :
39
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " woda/wp- scripts-styles-loader" ,
2
+ "name" : " woda/scripts-styles-loader" ,
3
3
"description" : " " ,
4
4
"keywords" : [
5
5
" wordpress" ,
6
6
" plugin" ,
7
7
" assets"
8
8
],
9
9
"license" : " GPLv2 or later" ,
10
- "homepage" : " https://github.com/wwwoda/wp-plugin -scripts-styles-loader" ,
10
+ "homepage" : " https://github.com/wwwoda/woda -scripts-styles-loader" ,
11
11
"authors" : [
12
12
{
13
13
"name" : " Woda" ,
25
25
],
26
26
"type" : " wordpress-plugin" ,
27
27
"support" : {
28
- "issues" : " https://github.com/wwwoda/wp-plugin -scripts-styles-loader/issues" ,
29
- "source" : " https://github.com/wwwoda/wp-plugin -scripts-styles-loader"
28
+ "issues" : " https://github.com/wwwoda/woda -scripts-styles-loader/issues" ,
29
+ "source" : " https://github.com/wwwoda/woda -scripts-styles-loader"
30
30
},
31
31
"require" : {
32
32
"ext-json" : " *" ,
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ Contributors: @davidmondok
3
3
Tags: fonts, performance
4
4
Requires at least: 4.5
5
5
Tested up to: 5.3
6
- Stable tag: 0.3.0
6
+ Stable tag: 0.3.1
7
7
License: GPLv2 or later
8
8
License URI: https://www.gnu.org/licenses/gpl-2.0.html
9
9
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
3
* Plugin Name: Woda Scripts Styles Loader
4
- * Plugin URI: https://github.com/wwwoda/wp-plugin -scripts-styles-loader
4
+ * Plugin URI: https://github.com/wwwoda/woda -scripts-styles-loader
5
5
* Description: ...
6
- * Version: 0.3.0
6
+ * Version: 0.3.1
7
7
* Author: Woda
8
8
* Author URI: https://www.woda.at
9
9
* License: GNU General Public License v2
10
10
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
11
* Domain Path: /languages
12
12
* Text Domain: woda-scripts-styles-loader
13
- * GitHub Plugin URI: https://github.com/wwwoda/wp-plugin-scripts-styles-loader
13
+ * GitHub Plugin URI: https://github.com/wwwoda/woda-scripts-styles-loader
14
+ * Release Asset: true
14
15
*
15
16
* @package Woda_Scripts_Styles_Loader
16
17
*/
You can’t perform that action at this time.
0 commit comments