We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecb91bf commit 5075f0eCopy full SHA for 5075f0e
.github/workflows/build.yml
@@ -12,6 +12,7 @@ jobs:
12
runs-on: ubuntu-latest
13
env:
14
PYTHON_ENV: ci
15
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
17
FMP_API_KEY: ${{ secrets.FMP_API_KEY }}
18
strategy:
@@ -64,10 +65,13 @@ jobs:
64
65
- build
66
67
68
69
70
71
steps:
72
- name: Checkout repo
73
uses: actions/checkout@v4
74
- name: install rops
- run: curl -L https://raw.githubusercontent.com/quantmind/rops/main/dev/install-rops | bash
75
+ run: |
76
+ curl -L https://raw.githubusercontent.com/quantmind/rops/main/dev/install-rops | bash
77
+ echo "$HOME/bin" >> $GITHUB_PATH
0 commit comments