This commit is contained in:
parent
50a1582b33
commit
62a1c715d5
1 changed files with 6 additions and 6 deletions
|
|
@ -87,7 +87,7 @@ jobs:
|
||||||
|
|
||||||
- run: |
|
- run: |
|
||||||
tar xf build.tar.gz && rm build.tar.gz
|
tar xf build.tar.gz && rm build.tar.gz
|
||||||
composer require deployer/deployer --dev
|
composer require deployer/deployer --dev -q
|
||||||
|
|
||||||
- run: apt-get update && apt-get install -y openssh-client rsync
|
- run: apt-get update && apt-get install -y openssh-client rsync
|
||||||
|
|
||||||
|
|
@ -95,7 +95,7 @@ jobs:
|
||||||
uses: deployphp/action@v1
|
uses: deployphp/action@v1
|
||||||
with:
|
with:
|
||||||
deployer-binary: "./bin/dep"
|
deployer-binary: "./bin/dep"
|
||||||
dep: --file=${{ inputs.deployer_file }} release:create stage
|
dep: -q --file=${{ inputs.deployer_file }} release:create stage
|
||||||
private-key: ${{ secrets.stage_key }}
|
private-key: ${{ secrets.stage_key }}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -119,7 +119,7 @@ jobs:
|
||||||
|
|
||||||
- run: |
|
- run: |
|
||||||
tar xf build.tar.gz && rm build.tar.gz
|
tar xf build.tar.gz && rm build.tar.gz
|
||||||
composer require deployer/deployer --dev
|
composer require deployer/deployer --dev -q
|
||||||
|
|
||||||
- run: apt-get update && apt-get install -y openssh-client rsync
|
- run: apt-get update && apt-get install -y openssh-client rsync
|
||||||
|
|
||||||
|
|
@ -127,7 +127,7 @@ jobs:
|
||||||
uses: deployphp/action@v1
|
uses: deployphp/action@v1
|
||||||
with:
|
with:
|
||||||
deployer-binary: "./bin/dep"
|
deployer-binary: "./bin/dep"
|
||||||
dep: --file=${{ inputs.deployer_file }} release:switch stage
|
dep: -q --file=${{ inputs.deployer_file }} release:switch stage
|
||||||
private-key: ${{ secrets.stage_key }}
|
private-key: ${{ secrets.stage_key }}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -200,7 +200,7 @@ jobs:
|
||||||
|
|
||||||
- run: |
|
- run: |
|
||||||
tar xf build.tar.gz && rm build.tar.gz
|
tar xf build.tar.gz && rm build.tar.gz
|
||||||
composer require deployer/deployer --dev
|
composer require deployer/deployer --dev -q
|
||||||
|
|
||||||
- run: apt-get update && apt-get install -y openssh-client rsync
|
- run: apt-get update && apt-get install -y openssh-client rsync
|
||||||
|
|
||||||
|
|
@ -208,5 +208,5 @@ jobs:
|
||||||
uses: deployphp/action@v1
|
uses: deployphp/action@v1
|
||||||
with:
|
with:
|
||||||
deployer-binary: "./bin/dep"
|
deployer-binary: "./bin/dep"
|
||||||
dep: --file=${{ inputs.deployer_file }} release:create production
|
dep: -q --file=${{ inputs.deployer_file }} release:create production
|
||||||
private-key: ${{ secrets.prod_key }}
|
private-key: ${{ secrets.prod_key }}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue