Skip to content

remove shard-manager from deploy (#269) #124

remove shard-manager from deploy (#269)

remove shard-manager from deploy (#269) #124

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-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 }}