-
Notifications
You must be signed in to change notification settings - Fork 3
37 lines (28 loc) · 816 Bytes
/
run.yml
File metadata and controls
37 lines (28 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Run script
on:
workflow_dispatch: {}
permissions:
contents: read
concurrency:
group: run-script
cancel-in-progress: true
jobs:
run:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Run main script
env:
# Users set these in: Settings -> Secrets and variables -> Actions
KRAKEN_SOURCE_KEY: ${{ secrets.KRAKEN_SOURCE_KEY }}
KRAKEN_SOURCE_SECRET: ${{ secrets.KRAKEN_SOURCE_SECRET }}
KRAKEN_YOUR_KEY: ${{ secrets.KRAKEN_YOUR_KEY }}
KRAKEN_YOUR_SECRET: ${{ secrets.KRAKEN_YOUR_SECRET }}
run: |
python main.py