Remove channel topic updates to clear up audit log #10
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: Push workflow | |
on: | |
push: | |
branches: [main] | |
jobs: | |
checkout: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up config.properties | |
run: | | |
echo "${{ secrets.BOT_PREFIX }}" > config.properties | |
echo "${{ secrets.DISCORD_BOT_KEY }}" >> config.properties | |
deploy: | |
runs-on: self-hosted | |
needs: checkout | |
steps: | |
- name: Docker | |
run: | | |
sudo docker-compose up --build -d |