-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update configuration and create description file for action
- Loading branch information
1 parent
643a614
commit d6a74ca
Showing
2 changed files
with
19 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: "Composer package build" | ||
description: "Composer package build from repository using GitHub Actions" | ||
inputs: | ||
BUILD_DIRECTORY_NAME: | ||
description: "build directory name" | ||
default: ".build" | ||
BUILD_FILE_NAME: | ||
description: "package file name" | ||
default: "package.zip" | ||
runs: | ||
using: "docker" | ||
image: "Dockerfile" | ||
args: | ||
- ${{ inputs.BUILD_DIRECTORY_NAME }} | ||
- ${{ inputs.BUILD_FILE_NAME }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters