fix marco; update libs #53
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: 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 |