Request LINZ Export #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Request LINZ Export | |
on: | |
schedule: | |
- cron: "6 16 * * 3" # at 04:06am on Wednesday NZST | |
workflow_dispatch: | |
jobs: | |
changelog: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- name: ⏬ Checkout code | |
uses: actions/checkout@v3 | |
- name: 🔢 Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: ⏬ Install | |
run: | | |
yarn | |
- name: 0️⃣ Request data export from LDS | |
run: | | |
yarn 0 | |
env: | |
REACT_APP_LDS_KEY: ${{ secrets.REACT_APP_LDS_KEY }} |