File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -116,6 +116,12 @@ jobs:
116
116
draft : false
117
117
token : ${{ secrets.GITHUB_TOKEN }}
118
118
119
+ update-releases :
120
+ name : Create Asset Table # creates asset table
121
+ runs-on : ubuntu-latest
122
+ needs : release
123
+ steps :
124
+ - uses : actions/checkout@v3
119
125
- name : Set up Python
120
126
uses : actions/setup-python@v4
121
127
with :
@@ -125,7 +131,8 @@ jobs:
125
131
run : python -m pip install --upgrade pip && pip install requests
126
132
127
133
- name : Run Python script
134
+ working-directory : ${{ github.workspace }}/${{ env.PROJECT_PATH }} # set working directory
128
135
run : |
129
136
python .github/workflows/update_release_table.py ${{ github.ref_name }}
130
137
env :
131
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
138
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments