Bump external/spdlog from 91807c2
to ddce421
#710
Workflow file for this run
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: 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 }} |