Spaces:
Running
Running
ardaatahan
commited on
Commit
•
d72a113
1
Parent(s):
f33de5a
explicitly checkout to main to get latest updates
Browse files
.github/scripts/process_report.py
CHANGED
@@ -216,7 +216,6 @@ def generate_report():
|
|
216 |
prev_version = json.load(f)
|
217 |
with open("dashboard_data/version.json", "r") as f:
|
218 |
curr_version = json.load(f)
|
219 |
-
print(curr_version)
|
220 |
|
221 |
prev_releases = set(prev_version.get("releases", []))
|
222 |
curr_releases = set(curr_version.get("releases", []))
|
|
|
216 |
prev_version = json.load(f)
|
217 |
with open("dashboard_data/version.json", "r") as f:
|
218 |
curr_version = json.load(f)
|
|
|
219 |
|
220 |
prev_releases = set(prev_version.get("releases", []))
|
221 |
curr_releases = set(curr_version.get("releases", []))
|
.github/workflows/dataset_update.yml
CHANGED
@@ -82,6 +82,9 @@ jobs:
|
|
82 |
runs-on: ubuntu-latest
|
83 |
steps:
|
84 |
- uses: actions/checkout@v4
|
|
|
|
|
|
|
85 |
|
86 |
- name: Set up Python
|
87 |
uses: actions/setup-python@v5
|
|
|
82 |
runs-on: ubuntu-latest
|
83 |
steps:
|
84 |
- uses: actions/checkout@v4
|
85 |
+
with:
|
86 |
+
ref: main
|
87 |
+
fetch-depth: 0
|
88 |
|
89 |
- name: Set up Python
|
90 |
uses: actions/setup-python@v5
|