Skip to content

iterate over object keys in WindowsJson.h #6

iterate over object keys in WindowsJson.h

iterate over object keys in WindowsJson.h #6

Workflow file for this run

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