Enabling unstable tokio on fly #236
Workflow file for this run
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 Fly Production | |
on: | |
push: | |
branches: [production] | |
env: | |
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Fly | |
uses: superfly/flyctl-actions/setup-flyctl@master | |
- name: Deploy lite-rpc | |
run: flyctl deploy -c cd/lite-rpc.toml --remote-only | |
# - name: Deploy quic-forward-proxy | |
# run: flyctl deploy -c cd/quic-forward-proxy.toml --remote-only |