Add sort and order impl #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
name: Deploy to Oracle Cloud | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
environment: oracle-cloud | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Create .env file | |
uses: SpicyPizza/create-envfile@v2 | |
with: | |
envkey_DEBUG: false | |
envkey_DB_HOST: "db" | |
envkey_TOKEN: ${{ secrets.TOKEN }} | |
envkey_GOOGLE_APPLICATION_CREDENTIALS: "app/wulkanowy-gac.json" | |
- name: Create GAC file | |
uses: timheuer/base64-to-file@v1 | |
with: | |
fileName: "wulkanowy-gac.json" | |
fileDir: "./" | |
encodedString: ${{ secrets.GAC_CONTENT }} | |
- uses: alex-ac/github-action-ssh-docker-compose@master | |
name: Docker-Compose Remote Deployment | |
with: | |
ssh_host: ${{ secrets.ORACLE_CLOUD_SSH_HOST }} | |
ssh_private_key: ${{ secrets.ORACLE_CLOUD_SSH_PRIVATE_KEY }} | |
ssh_user: ${{ secrets.ORACLE_CLOUD_SSH_USER }} | |
docker_compose_prefix: schools |