Skip to content

build fix

build fix #690

Workflow file for this run

name: GitHub Actions Build
on:
pull_request:
push:
branches:
- '**'
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
platform: [Win32]
buildtype: [Release]
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Build Solution
uses: ./.github/workflows/build_all
- name: Update Tags
continue-on-error: true
if: ${{ github.event_name == 'push' && github.ref_name == 'master' }}
uses: ThirteenAG/update-tags@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}