iterate over object keys in WindowsJson.h #6
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: TwitchNotify | |
on: | |
push: | |
branches: master | |
jobs: | |
build: | |
runs-on: windows-2022 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
path: repo | |
- name: Build | |
shell: cmd | |
run: cd repo && build.cmd | |
- name: Checkout wiki | |
uses: actions/checkout@v3 | |
with: | |
repository: ${{github.repository}}.wiki | |
path: wiki | |
- name: Upload binary | |
shell: cmd | |
run: | | |
cd repo | |
"C:\Program Files\7-Zip\7z.exe" a -tzip -mx=9 TwitchNotify.zip TwitchNotify.exe TwitchNotify.ini | |
cd .. | |
copy repo\TwitchNotify.zip wiki | |
cd wiki | |
git config --local user.email "action@github.com" | |
git config --local user.name "GitHub Action" | |
git commit --all --amend --no-edit | |
git push --force-with-lease |