We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98d88e9 commit bd758faCopy full SHA for bd758fa
.github/workflows/main.yml
@@ -6,6 +6,9 @@ on:
6
- main
7
workflow_dispatch:
8
9
+env:
10
+ FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
11
+
12
jobs:
13
build:
14
runs-on: ubuntu-latest
@@ -17,7 +20,7 @@ jobs:
17
20
- name: Set up Python
18
21
uses: actions/setup-python@v2
19
22
with:
- python-version: '3.9'
23
+ python-version: "3.9"
24
25
- name: Install dependencies
26
run: |
@@ -41,8 +44,9 @@ jobs:
41
44
42
45
python generate_metadata.py
43
46
47
+ - name: Install Flyctl
48
+ uses: superfly/flyctl-actions/setup-flyctl@master
49
50
- name: Deploy to Fly.io using Datasette
- env:
- FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
51
52
datasette publish fly players.db --app="fide-players" -m metadata.json
0 commit comments