Add VS2005 toolchain in Docker #56
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
################################################################################ | |
# Push workflow running on a push to any branch | |
################################################################################ | |
name: Push | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
build_x86: | |
uses: ./.github/workflows/build.yml | |
with: | |
arch: x86 | |
type: Release | |
build_x64: | |
uses: ./.github/workflows/build.yml | |
with: | |
arch: x64 | |
type: Release |