Skip to content

Commit 4cd91ce

Browse files
authored
Merge pull request #38 from hydephp/release/v0.4.0
HydeCLI v0.4.0
2 parents a822f6a + 5bc2bcd commit 4cd91ce

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

.github/workflows/publish-release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,12 @@ jobs:
7070
sha256sum hyde > checksum.txt
7171
echo "SHA256 checksum of the application binary: $(cat checksum.txt)"
7272
73+
- name: Commit executable
74+
uses: EndBug/add-and-commit@v9
75+
with:
76+
add: builds/hyde
77+
message: "Build standalone executable"
78+
7379
- name: Upload executable
7480
uses: actions/upload-artifact@v3
7581
with:

.gitignore

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
11
/vendor
2-
/node_modules
3-
/builds
42
/.idea
5-
/.vscode
6-
/.vagrant
7-
/.cache
8-
.phpunit.result.cache
9-
103
.env
11-
12-
# /_site

app/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
class Application extends \Hyde\Foundation\Application
88
{
9-
final public const APP_VERSION = '0.3.0';
9+
final public const APP_VERSION = '0.4.0';
1010

1111
public function getCachedPackagesPath(): string
1212
{

0 commit comments

Comments
 (0)