Skip to content

update debug workflow #3

update debug workflow

update debug workflow #3

Workflow file for this run

name: Debug
on:
push:
branches:
- debug
workflow_dispatch:
jobs:
fetch:
runs-on: ubuntu-latest
steps:
- name: Determine current quarter
id: current-quarter
run: |
echo value="$(date +%Y)Q$(( ($(date +%-m)-1)/3+1 ))" \
>> "${GITHUB_OUTPUT}"
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
sparse-checkout: |
data/${{ steps.current-quarter.outputs.value }}/1-fetch
scripts
token: ${{ secrets.BOT_TOKEN }}
- name: Show and tell
run: |
ls -a
tree