Bump slim/psr7 from 1.6 to 1.6.1 in /code #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /.github/workflows/integration-deploy.yml | |
# Warning: deletes all files on uberspace which are not in repo, use without --delete if unsure | |
name: Deploy Integration | |
on: | |
push | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
uses: php-actions/composer@v6 | |
with: | |
dev: no | |
args: --profile --ignore-platform-reqs --working-dir=code | |
- name: rsync deployments | |
uses: burnett01/rsync-deployments@6.0.0 | |
with: | |
switches: -avzr --delete --exclude=".env" | |
path: / | |
remote_path: /home/${{ secrets.UBERSPACE_USER }}/html/${{ secrets.INTEGRATION }} | |
remote_host: ${{ secrets.UBERSPACE_HOST }} | |
remote_user: ${{ secrets.UBERSPACE_USER }} | |
remote_key: ${{ secrets.DEPLOY_KEY_PRIVATE }} |