Skip to content

Commit 3632dc0

Browse files
committed
update debug workflow
1 parent b58d9ab commit 3632dc0

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/debug.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,19 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15+
16+
- name: Determine current quarter
17+
id: current-quarter
18+
run: |
19+
echo value="$(date +%Y)Q$(( ($(date +%-m)-1)/3+1 ))" \
20+
>> "${GITHUB_OUTPUT}"
21+
1522
- name: Checkout repository
1623
uses: actions/checkout@v4
1724
with:
1825
fetch-depth: 0
1926
sparse-checkout: |
20-
data
27+
data/${{ steps.current-quarter.outputs.value }}/1-fetch
2128
scripts
2229
token: ${{ secrets.BOT_TOKEN }}
2330

0 commit comments

Comments
 (0)