Skip to content

Update default location #34

Update default location

Update default location #34

Workflow file for this run

name: Deploy Junior
on:
push:
branches:
- main
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install flyctl
uses: superfly/flyctl-actions/setup-flyctl@master
- name: Deploy to Fly.io
run: flyctl deploy --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
# TODO: Consider Fly.io release command
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun run sync
- name: Deploy commands
run: bun run commands
env:
PROD_TOKEN: ${{ secrets.BOT_TOKEN }}