We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
- name: Build uses: deployphp/action@v1 with: private-key: "${{ secrets.DEV_PRIVATE_KEY }}" deployer-binary: "vendor/bin/dep" dep: "build" - name: DEV environment deployment uses: deployphp/action@v1 with: private-key: "${{ secrets.DEV_PRIVATE_KEY }}" deployer-binary: "vendor/bin/dep" dep: "deploy-artifact develop"
The text was updated successfully, but these errors were encountered:
Just encountered this as well. You need to add skip-ssh-setup: true to your second step
skip-ssh-setup: true
- name: Deploy uses: deployphp/action@v1 with: private-key: ${{ secrets.SSH_PRIVATE_KEY }} dep: deploy stage=staging -v --branch=${{ github.ref_name }} - name: Unlock deploy if job was cancelled uses: deployphp/action@v1 with: skip-ssh-setup: true private-key: ${{ secrets.SSH_PRIVATE_KEY }} dep: deploy:unlock stage=staging -v if: cancelled()
Sorry, something went wrong.
No branches or pull requests
Workflow (part)
Result
Upvote & Fund
The text was updated successfully, but these errors were encountered: