Skip to content

Commit 73fba41

Browse files
authored
Merge pull request #51 from hydephp/release/v0.5.1
HydeCLI v0.5.1
2 parents a1d7253 + f6beec3 commit 73fba41

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

.github/workflows/create-release.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,10 @@ jobs:
3636
git fetch origin master:master
3737
git reset --hard master
3838
39-
- name: Cache Composer packages
40-
id: composer-cache
41-
uses: actions/cache@v3
42-
with:
43-
path: vendor
44-
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
45-
restore-keys: |
46-
${{ runner.os }}-php-
39+
- name: Remove development dependencies
40+
run: |
41+
composer remove mockery/mockery --dev --no-install
42+
composer remove pestphp/pest --dev --no-install
4743
4844
- name: Install dependencies
4945
run: composer install --no-interaction --no-progress --no-suggest --prefer-dist
@@ -77,6 +73,9 @@ jobs:
7773
title: "HydeCLI v${{ steps.build-version.outputs.version }}"
7874
branch: "release/v${{ steps.build-version.outputs.version }}"
7975
delete-branch: true
76+
add-paths: |
77+
app/Application.php
78+
builds/hyde
8079
8180
body: |
8281
This pull request was automatically created by the [HydeCLI release workflow](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}).

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.5.0';
9+
final public const APP_VERSION = '0.5.1';
1010

1111
public function getCachedPackagesPath(): string
1212
{

builds/hyde

-1.61 MB
Binary file not shown.

0 commit comments

Comments
 (0)