We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 614f83e commit 1fb74a1Copy full SHA for 1fb74a1
1 file changed
.github/workflows/build.yml
@@ -19,15 +19,15 @@ jobs:
19
- name: Install dependencies
20
run: composer install --prefer-dist --no-progress --no-suggest
21
22
- - name: Get the version
+ - name: Get the tag
23
id: get_tag
24
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)
25
26
- name: Build
27
- run: php laradock-cli app:build --build-version=${{ steps.get_tag.outputs.VERSION }}
28
-
+ run: php laradock-cli app:build --build-version=${{ steps.get_tag.outputs.VERSION }}
+
29
- uses: AButler/upload-release-assets@v2.0
30
with:
31
- files: '/home/runner/work/laradock-cli/laradock-cli/builds/laradock-cli'
+ files: ./builds/laradock-cli
32
repo-token: ${{ secrets.GITHUB_TOKEN }}
33
release-tag: ${GITHUB_REF}
0 commit comments