restore fly workflow

This commit is contained in:
GroovieGermanikus 2023-09-08 22:10:37 +02:00
parent cfc27f63d6
commit 50a2699707
1 changed files with 31 additions and 0 deletions

31
.github/workflows/fly-deploy.yml vendored Normal file
View File

@ -0,0 +1,31 @@
name: Deploy to Fly
on:
workflow_run:
workflows: ["Publish Docker Image"]
branches: [production]
types:
- completed
workflow_dispatch:
inputs:
imageTag:
description: 'Docker Image Tag'
required: true
type: string
default: 'latest'
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Fly
uses: superfly/flyctl-actions/setup-flyctl@master
- name: Deploy
run: flyctl deploy