Skip to content

🥄 Scraping data

🥄 Scraping data #78

Workflow file for this run

name: scrape-data
on:
workflow_dispatch:
schedule:
- cron: "0 12 1 * *"
jobs:
build:
runs-on: windows-latest
steps:
- name: 📦 Checkout Repository
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Build
run: dotnet build scraper/Scraper/Scraper.csproj
- name: Scrape
run: dotnet run --project scraper/Scraper/Scraper.csproj
- name: ✏️ Commit changes
continue-on-error: true
run: |
cd ${{github.workspace}}
git config --global user.email "orbi@blockception.com"
git config --global user.name "Orbi-bot"
git add .
git commit -m "auto: Scraped data"
git push