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

ci: change to use nixpacks single file #24

ci: change to use nixpacks single file

ci: change to use nixpacks single file #24

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
with:
sdk: stable
- name: Use Node 16
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Install Railway
run: npm i -g @railway/cli
- name: Deploy
run: railway up
env:
RAILWAY_TOKEN: ${{ secrets.RAILWAY_TOKEN }}