Coalesce minus int/float into negative int/float #419
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: Stage app for PR preview | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize, closed] | |
jobs: | |
staging_app: | |
runs-on: ubuntu-latest | |
# Only run one deployment at a time per PR. | |
concurrency: | |
group: scrapscript-pr-${{ github.event.number }} | |
# Create a GitHub deployment environment per staging app so it shows up | |
# in the pull request UI. | |
environment: | |
name: scrapscript-pr-${{ github.event.number }} | |
url: ${{ steps.deploy.outputs.url }}/repl | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Deploy | |
id: deploy | |
uses: superfly/[email protected] | |
with: | |
name: scrapscript-pr-${{ github.event.number }} | |
region: ewr | |
org: personal | |
env: | |
FLY_API_TOKEN: ${{ secrets.FLY_API_DEPLOY_TOKEN }} |