Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/development' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
tylovejoy committed May 8, 2024
2 parents b7985d4 + ad06392 commit a2cb278
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/deploy-development.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
on:
push:
branches:
- development

jobs:
deploy:
runs-on: ubuntu-latest
environment: dev
env:
TOKEN: ${{ secrets.TOKEN }}
LOGGING_URL: ${{ secrets.LOGGING_URL }}
PSQL_EXPOSE_PORT: ${{ secrets.PSQL_EXPOSE_PORT }}
PSQL_PASSWORD: ${{ secrets.PSQL_PASSWORD }}
PSQL_USER: ${{ secrets.PSQL_USER }}
PYTHON_ENV: ${{ secrets.PYTHON_ENV }}
steps:
# need checkout before using docker-compose-remote-action
- uses: actions/checkout@v2
- uses: chaplyk/[email protected]
with:
ssh_host: ${{ secrets.SSH_HOST }}
ssh_user: ${{ secrets.SSH_USER }}
ssh_key: ${{ secrets.SSH_KEY }}
compose_file: docker-compose.yml
build: true

0 comments on commit a2cb278

Please sign in to comment.