Skip to content

fix marco; update libs #53

fix marco; update libs

fix marco; update libs #53

Workflow file for this run

name: ScrapeCast Build
on:
push:
branches: [ master ]
jobs:
build-and-run:
runs-on: ubuntu-latest
steps:
- uses: szenius/[email protected]
with:
timezoneLinux: "Europe/Budapest"
- uses: actions/checkout@v4
- uses: dart-lang/setup-dart@9a04e6d73cca37bd455e0608d7e5092f881fd603
with:
sdk: stable
- name: Install dependencies
run: dart pub get
- name: Git Config
run: |
git config user.name "ScrapeCast"
git config user.email "[email protected]"
- name: Compile
run: dart compile exe ./bin/scrapecast.dart
- name: Run
run: ./bin/scrapecast.exe
- name: Publish changes
run: |
git add docs
git add data
git add bin/scrapecast.exe
git commit -m "Publish changes"
git push origin master