Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Merge branch 'nhcarrigan-main' #19

Merge branch 'nhcarrigan-main'

Merge branch 'nhcarrigan-main' #19

Workflow file for this run

name: Deploy to Fly.io
on:
push:
branches:
- main
jobs:
cd:
name: Continuous deployment
strategy:
matrix:
os: [ubuntu-latest]
node: ["20"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Source Files
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- name: Install Fly
uses: superfly/flyctl-actions/setup-flyctl@fc53c09e1bc3be6f54706524e3b82c4f462f77be # 1.5
- name: Deploy to Fly.io
run: flyctl deploy --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}