From 297c043f0e06332409c95f9b515a6564aacbc6ac Mon Sep 17 00:00:00 2001 From: Tzvi Melamed Date: Fri, 27 Oct 2023 12:44:12 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(action):=20Set=20php-version?= =?UTF-8?q?=20as=20input=20in=20action.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 8 +++++++- action.yml | 3 +++ package.json | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dee8757..3f3c06d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.1] - 2023-10-27 + +### Fixed +- Set `php-version` as an input in `action.yml` (#2). + ## [1.0.0] - 2023-10-27 This was the initial release of `laravel-deploy`. -[unreleased]: https://github.com/TzviPM/laravel-deploy/compare/v1.0.0...HEAD +[unreleased]: https://github.com/TzviPM/laravel-deploy/compare/v1.0.1...HEAD +[1.0.1]: https://github.com/TzviPM/laravel-deploy/compare/v1.0.0...v1.0.1 [1.0.0]: https://github.com/TzviPM/laravel-deploy/releases/tag/v1.0.0 \ No newline at end of file diff --git a/action.yml b/action.yml index 7ec0a6f..bbadc5e 100644 --- a/action.yml +++ b/action.yml @@ -26,6 +26,9 @@ inputs: project: description: Friendly name to prefix projects in Envoyer. required: false + php-version: + description: The php version to use for the envoyer server. + required: true github-token: description: GitHub token to create an authenticated Octokit client. required: false diff --git a/package.json b/package.json index fe6eb81..96ec761 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "laravel-deploy", - "version": "1.0.0", + "version": "1.0.1", "description": "A GitHub Action to create on-demand preview environments for Laravel apps.", "author": "Tzvi Melamed (TzviPM)", "private": true,