optional players list; online/offline color picker for discord #44
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 the cloud | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
name: 🚀 Deploy app | |
runs-on: ubuntu-latest | |
env: | |
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | |
steps: | |
- uses: actions/checkout@v3 | |
name: 🚚 Get latest code | |
with: | |
fetch-depth: 0 | |
- uses: superfly/flyctl-actions/setup-flyctl@master | |
- name: 🛩 Deploy to fly.io | |
run: flyctl deploy --remote-only --auto-confirm --region ${{ secrets.FLY_REGION }} --app ${{ github.repository_owner }}-gsw |