File tree Expand file tree Collapse file tree 5 files changed +14
-10
lines changed
Expand file tree Collapse file tree 5 files changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -22,12 +22,12 @@ jobs:
2222 - name : Phar Build
2323 run : composer phar:build
2424 - name : permissions
25- run : chmod +x ./terminus
25+ run : chmod +x ./terminus.phar
2626 - name : Save terminus.phar as artifact
2727 uses : actions/upload-artifact@v2
2828 with :
2929 name : terminus-phar
30- path : terminus
30+ path : terminus.phar
3131 if-no-files-found : error
3232
3333 functional :
9090 - name : Release
9191 uses : softprops/action-gh-release@v1
9292 with :
93- files : terminus
93+ files : terminus.phar
9494 env :
9595 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
9696
@@ -128,7 +128,7 @@ jobs:
128128 - name : Full Composer Install
129129 run : composer install
130130 - name : Prepare needed folder and fix permissions
131- run : mkdir -p ~/.terminus/cache/tokens && chmod +x ./terminus
131+ run : mkdir -p ~/.terminus/cache/tokens && mv ./terminus.phar ./terminus && chmod +x ./terminus
132132 - name : Passegers, gather ye packages
133133 run : composer bundle:linux
134134 - name : Save terminus deb as artifact
Original file line number Diff line number Diff line change 11# Change Log
22All notable changes to this project will be documented in this file. This project adheres to [ Semantic Versioning] ( http://semver.org )
33
4+ ## 3.0.1 - 2021-12-08
5+
6+ ### Fixed
7+ - Change file name in deploy script (#2270 )
8+
49## 3.0.0 - 2021-12-08
510
611### Added
Original file line number Diff line number Diff line change 7676 "build" : " @phar:build" ,
7777 "test" : " @test:functional" ,
7878 "phar:build" : [
79- " rm -Rf ./terminus" ,
79+ " rm -Rf ./terminus.phar " ,
8080 " php -d phar.readonly=Off vendor/bin/phar-composer.phar build ." ,
81- " mv terminus.phar terminus" ,
82- " chmod +x terminus"
81+ " chmod +x terminus.phar"
8382 ],
8483 "phar:install" : [
8584 " rm -rf /usr/local/bin/terminus || true" ,
86- " mv ./terminus /usr/local/bin/terminus"
85+ " mv ./terminus.phar /usr/local/bin/terminus"
8786 ],
8887 "phar:update" : [
8988 " @phar:build" ,
Original file line number Diff line number Diff line change 77---
88
99# App
10- TERMINUS_VERSION : ' 3.0.1-dev '
10+ TERMINUS_VERSION : ' 3.0.1'
1111
1212# Connectivity
1313TERMINUS_HOST : ' terminus.pantheon.io'
Original file line number Diff line number Diff line change 4848 }
4949}
5050
51- const TERMINUS_BIN_FILE = './terminus ' ;
51+ const TERMINUS_BIN_FILE = './terminus.phar ' ;
5252chmod (TERMINUS_BIN_FILE , 0700 );
5353
5454if ($ token ) {
You can’t perform that action at this time.
0 commit comments