Skip to content

make project structure simple #4

make project structure simple

make project structure simple #4

Workflow file for this run

name: build_wintools
on:
push: {tags: ['v*'] } # Push events to matching v*, i.e. v1.0, v20.15.10
pull_request:
permissions:
contents: write
jobs:
build_winexe_winmemdll:
runs-on: windows-2019
steps:
- name: pull and init
uses: actions/checkout@v3
with: {submodules: true}
- name: add msbuild to path
uses: microsoft/[email protected]
- name: build target
run: script/build_winmemdll.bat
- name: upload release
uses: ncipollo/release-action@v1
if: github.event_name == 'push'
with:
artifacts: "build/winmemdll32.exe,build/winmemdll64.exe"
allowUpdates: "true"
token: ${{ secrets.GITHUB_TOKEN }}