Skip to content

Change line about aggressive timeline #462

Change line about aggressive timeline

Change line about aggressive timeline #462

Workflow file for this run

name: πŸš€ Deploy (staging)
on:
push:
tags:
- stage
branches:
- dev
paths-ignore:
- ".vscode/**"
- "scripts/**"
- "README.md"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
jobs:
test:
name: ⚑ Vitest
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: βŽ” Setup node
uses: actions/setup-node@v4
with:
node-version: 20
- name: πŸ“₯ Install deps
uses: bahmutov/npm-install@v1
- name: ⚑ Run vitest
run: npm run test -- --coverage
deploy:
name: πŸš€ Deploy
runs-on: ubuntu-latest
needs: [test]
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: 🎈 Setup Fly
uses: superfly/flyctl-actions/setup-flyctl@1.5
- name: πŸš€ Deploy Staging
run: flyctl deploy --remote-only --config ./fly.staging.toml --build-arg SOURCE_REPO="remix-run/remix" --build-arg RELEASE_PACKAGE="remix" --strategy bluegreen
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}