File tree Expand file tree Collapse file tree 2 files changed +14
-4
lines changed Expand file tree Collapse file tree 2 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 82
82
name : checksum
83
83
path : builds/checksum.txt
84
84
85
+ - name : Upload the version number artifact
86
+ uses : actions/upload-artifact@v3
87
+ with :
88
+ name : version
89
+ path : version
90
+
85
91
release :
86
92
needs : build
87
93
runs-on : ubuntu-latest
@@ -103,11 +109,15 @@ jobs:
103
109
name : checksum
104
110
path : builds
105
111
106
- - name : Get build version
107
- run : echo "version=$(php ./bin/get-release-version.php)" >> $GITHUB_ENV
112
+ - name : Download the version number artifact
113
+ uses : actions/download-artifact@v3
114
+ with :
115
+ name : version
108
116
109
117
- name : Prepare version information
110
- run : echo "CHECKSUM=$(cat builds/checksum.txt | cut -d ' ' -f 1)" >> $GITHUB_ENV
118
+ run : |
119
+ echo "CHECKSUM=$(cat builds/checksum.txt | cut -d ' ' -f 1)" >> $GITHUB_ENV
120
+ echo "VERSION=$(cat version)" >> $GITHUB_ENV
111
121
112
122
- name : Print version information
113
123
run : |
Original file line number Diff line number Diff line change 6
6
7
7
class Application extends \Hyde \Foundation \Application
8
8
{
9
- final public const APP_VERSION = '0.2.0 ' ;
9
+ final public const APP_VERSION = '0.2.1 ' ;
10
10
11
11
public function getCachedPackagesPath (): string
12
12
{
You can’t perform that action at this time.
0 commit comments