Skip to content

Created Dockerfile and Jenkinsfile for running Automatic Archive with… #2869

Created Dockerfile and Jenkinsfile for running Automatic Archive with…

Created Dockerfile and Jenkinsfile for running Automatic Archive with… #2869

Workflow file for this run

name: Extract JSON data
on:
schedule:
- cron: '0 * * * *' # Run every hour
jobs:
cache-urls:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Extract data
run: python cache_url.py
env:
VUE_APP_PDAP_API_KEY: ${{ secrets.VUE_APP_PDAP_API_KEY }}

Check failure on line 35 in .github/workflows/update.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/update.yml

Invalid workflow file

You have an error in your yaml syntax on line 35
VITE_VUE_APP_BASE_URL: ${{ secrets.VITE_VUE_APP_BASE_URL }}