Some checks failed
Deploy to branch.dsv.su.se / Deploy-branch (pull_request) Failing after 3s
16 lines
449 B
YAML
16 lines
449 B
YAML
name: Deploy to branch.dsv.su.se
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- reopened
|
|
- ready_for_review
|
|
jobs:
|
|
Deploy-branch:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: |
|
|
echo "${{ secrets.BRANCH_DEPLOY_KEY }}" >> ssh_key
|
|
chmod 0600 ssh_key
|
|
- run: echo "${{ gitea.serverurl }}/${{ gitea.repository }}.git ${{ gitea.refname }}" | ssh -o StrictHostKeyChecking=accept-new -i ssh_key branch.dsv.su.se
|