Skip to content

switch to global command for Notifications (#258) #113

switch to global command for Notifications (#258)

switch to global command for Notifications (#258) #113

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
deploy-shard-manager:
name: Deploy shard-manager
runs-on: ubuntu-latest
concurrency: deploy-shard-manager
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --remote-only --config fly.shard-manager.toml
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
deploy-runner:
name: Deploy runner
runs-on: ubuntu-latest
concurrency: deploy-runner
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --remote-only --config fly.runner.toml
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
deploy-discord-bot:
name: Deploy discord-bot
runs-on: ubuntu-latest
concurrency: deploy-discord-bot
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --remote-only --config fly.discord-bot.toml
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}