Skip to content

Commit a43a5e6

Browse files
committed
Correct 'files' parameter for sondreb/action-release@master
1 parent d82153e commit a43a5e6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ jobs:
3939
coverage: none
4040
php-version: ${{ matrix.php }}
4141

42-
- name: Checkout code
42+
- name: Checkout Code
4343
uses: actions/checkout@v2
4444
with:
4545
fetch-depth: 5
4646

47-
- name: Common settings
47+
- name: Common Settings
4848
run: |
4949
# Hide "You are in 'detached HEAD' state" message
5050
git config --global advice.detachedHead false

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
id: get-version
8888
run: |
8989
echo ::set-output name=version::${GITHUB_REF#refs/tags/}
90-
echo Pushing version ${{ steps.get-version.outputs.version }}
90+
echo 'Pushing version ${{ steps.get-version.outputs.version }}'
9191
9292
- name: Get Application Version
9393
# Self-test
@@ -98,11 +98,11 @@ jobs:
9898
uses: sondreb/action-release@master
9999
with:
100100
token: ${{ secrets.GITHUB_TOKEN }}
101-
files: example.phar
101+
files: 'example.phar'
102102
folder: "${{github.workspace}}/"
103103
tag: ${{ github.ref }}
104104
name: ${{ steps.get-version.outputs.version }}
105-
body: 'ANext stable release.'
105+
body: 'Next stable release.'
106106
draft: false
107107
prerelease: false
108108

0 commit comments

Comments
 (0)