File tree 1 file changed +8
-10
lines changed
1 file changed +8
-10
lines changed Original file line number Diff line number Diff line change 17
17
18
18
- name : Remove optional "v" prefix
19
19
id : version
20
- run : VERSION=${{ inputs.version }} echo "::set-output name=version::${VERSION#v}"
20
+ run : |
21
+ VERSION=${{ inputs.version }}
22
+ echo "version=${VERSION#v}" >> "$GITHUB_OUTPUT"
21
23
22
24
- name : Update Application.php version
23
25
run : |
@@ -34,15 +36,11 @@ jobs:
34
36
host : 104.248.56.26
35
37
username : forge
36
38
key : ${{ secrets.SSH_PRIVATE_KEY_SPLITTER }}
37
-
38
- - name : Change directory
39
- run : cd laravel-${{ github.ref_name }}
40
-
41
- - name : Pull in latest changes
42
- run : git pull origin ${{ github.ref_name }}
43
-
44
- - name : Run release script
45
- run : bash bin/release v${{ steps.version.outputs.version }}
39
+ script : |
40
+ cd laravel-${{ github.ref_name }}
41
+ git pull origin ${{ github.ref_name }}
42
+ bash bin/release v${{ steps.version.outputs.version }}
43
+ script_stop : true
46
44
47
45
- name : Generate release notes
48
46
id : notes
You can’t perform that action at this time.
0 commit comments