try to fix backend location #11
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
# Continous deployment of the app | |
name: CD | |
on: | |
push: | |
branches: ["develop"] | |
jobs: | |
build: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run deploy script | |
run: bash deploy.sh |