fix: fixed main yml #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: Fetch and Save Data | |
on: | |
schedule: | |
- cron: '0 0 * * 1' # Run every Monday at midnight | |
push: | |
branches: | |
- main | |
jobs: | |
fetch-and-save-data: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 14 | |
- name: Install Dependencies | |
run: npm install node-fetch | |
- name: Fetch and Save Data | |
run: | | |
node -e "import fetch from 'node-fetch'; \ | |
import fs from 'fs'; \ | |
fetch('https://vdnh.ru/local/templates/v3_new_header/js/places-s1.js') \ | |
.then(response => response.text()) \ | |
.then(data => { \ | |
const jsonData = data.replace(/^var places = |;$/g, ''); \ | |
const backupData = JSON.stringify(jsonData, null, 2); \ | |
fs.writeFileSync('backup.json', backupData); \ | |
}) \ | |
.catch(error => { \ | |
console.error('Error fetching data:', error); \ | |
process.exit(1); \ | |
})" --loader ts-node/esm |