Float Data Type (#54) #24
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 Web Compiler to Fly.io | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "webcompiler/**" | |
| - "compiler/**" | |
| - ".github/workflows/deploy-webcompiler.yml" | |
| jobs: | |
| deploy: | |
| name: Deploy Web Compiler | |
| runs-on: ubuntu-latest | |
| concurrency: webcompiler-deploy-group | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Fly.io CLI | |
| uses: superfly/flyctl-actions/setup-flyctl@master | |
| - name: Deploy to Fly.io | |
| run: | | |
| flyctl deploy --remote-only --app osprey --config webcompiler/fly.toml | |
| env: | |
| FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} |