mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-22 15:53:45 +00:00
15 lines
313 B
YAML
15 lines
313 B
YAML
|
name: Deploy
|
||
|
on: [push]
|
||
|
branch: main
|
||
|
|
||
|
jobs:
|
||
|
deploy:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
- uses: superfly/flyctl-actions/setup-flyctl@v1.5
|
||
|
- run: flyctl deploy --remote-only
|
||
|
env:
|
||
|
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
|