fix regex #87
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 | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: stardrive | |
env: | |
DB_PASSWORD: ${{ secrets.DB_PASSWORD }} | |
DISCORD_BOT_TOKEN_NB: ${{ secrets.DISCORD_BOT_TOKEN_NB }} | |
DISCORD_BOT_TOKEN_SB: ${{ secrets.DISCORD_BOT_TOKEN_SB }} | |
DISCORD_BOT_TOKEN_DGB: ${{ secrets.DISCORD_BOT_TOKEN_DGB }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Update 3rd party docker containers | |
run: docker compose pull | |
- name: Build app | |
run: docker compose build | |
- name: Spin up containers | |
run: docker compose up -d |