Skip to content

fix: nameplate positioning (for the third time) #14

fix: nameplate positioning (for the third time)

fix: nameplate positioning (for the third time) #14

Workflow file for this run

name: Fly Deploy
on:
push:
branches:
- master
jobs:
deploy:
name: Deploy app
runs-on: ubuntu-latest
concurrency: deploy-group # optional: ensure only one action runs at a time
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: "Create production env file"
run: |
touch .env
echo "VERSION=\"$(git rev-parse --short=7 HEAD)\"" >> .env
cat .env
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}