update dependencies (#244) #99
This file contains hidden or 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: | |
| - 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 }} |