adjust bad alignment #65
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
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v2 | |
- name: create env files | |
run: | | |
echo "${{ secrets.FRONTEND_ENV }}" > ./frontend/.env; | |
echo "${{ secrets.BACKEND_ENV }}" > ./backend/.env; | |
# TODO: Commented out because they break the pipeline. Fix required. | |
# - name: Rootless Docker | |
# uses: ScribeMD/rootless-docker@0.2.2 | |
- name: compose build | |
run: docker compose build | |
- name: compose up | |
run: docker compose up -d |