target the right file when processing a sequence of DDE commands (fix… #4965
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: Build | |
on: | |
push: | |
pull_request: | |
repository_dispatch: | |
types: [build-pre-rel] | |
jobs: | |
build: | |
name: Build | |
#runs-on: SumatraBuilder | |
runs-on: windows-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.21" | |
- name: Check out source code | |
uses: actions/checkout@v4 | |
with: | |
# needed to calc build number via git log --oneline | |
fetch-depth: 0 | |
- name: Build | |
env: | |
CERT_PWD: ${{ secrets.CERT_PWD }} | |
run: .\doit.bat -ci |