Skip to content

Commit

Permalink
Merge pull request #286 from hackupc/CD/Added-provisional-CD
Browse files Browse the repository at this point in the history
CD: Added temporary betatest continious deployment
  • Loading branch information
EncryptEx authored Feb 9, 2024
2 parents b8335f6 + f239c18 commit a3b7e74
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/backendTest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Deploy on BackendTest

on:
push:
branches:
- 'develop'

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1

- name: Git pull and rebuild docker
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
port: ${{ secrets.PORT }}
key: ${{ secrets.SSHKEY }}
script: ${{ secrets.SCRIPT }}

0 comments on commit a3b7e74

Please sign in to comment.