Add new features, fix .env setup, fix permissions and UID conflicts (… #52
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: Check running | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Copy environment file | |
run: cp .env.sample .env | |
- name: Copy docker-compose file | |
run: cp docker-compose.yml.sample docker-compose.yml | |
- name: Run setup.sh | |
run: ./setup.sh | |
- name: Run docker compose | |
run: docker compose up -d |