Skip to content

Commit

Permalink
[fix] missing script in fetching PDF action
Browse files Browse the repository at this point in the history
  • Loading branch information
TechQuery committed Jun 25, 2024
1 parent 77b2efa commit 5bcf329
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/fetch-PDF.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,22 @@ jobs:
Download-and-Transform:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3

- run: tool/fetch-PDF.sh data downloads
- uses: pnpm/action-setup@v2
with:
version: 9
- uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
- name: Install, Inject & Run
run: |
pnpm i
cat > .env <<EOF
${{ secrets.ENV_FILE }}
EOF
find downloads/ -type f | xargs -I {} pnpm tool {}
- uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 5bcf329

Please sign in to comment.