Skip to content

Commit ff32618

Browse files
committed
Move assets builders order
1 parent 304d4de commit ff32618

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ jobs:
3030
- name: Install requests
3131
run: pip install requests
3232

33-
- name: Generate assets
34-
run: python .root/generate_site_assets.py
35-
3633
- name: Download releases
3734
env:
3835
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -43,6 +40,9 @@ jobs:
4340
python generate_data.py
4441
ls -R
4542
43+
- name: Generate assets
44+
run: python .root/generate_site_assets.py
45+
4646
- name: Deploy (into "repo")
4747
run: |
4848
git config user.name "github-actions[bot]"

.root/generate_site_assets.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ def get_pathes():
4848
data = json.load(f)
4949
collect_paths(data, [], pathes)
5050
for path in pathes:
51-
print(f"Checking versions for ../{path}")
52-
if os.path.exists(path):
53-
versions[path] = get_versions(path)
51+
print(f"Checking versions for ./jars/{path}")
52+
if os.path.exists(f"./jars/{path}"):
53+
versions[path] = get_versions(f"./jars/{path}")
5454
else: print("Not found")
5555
print(versions)
5656
return versions

0 commit comments

Comments
 (0)