Skip to content

fix dependson build workaround #840

fix dependson build workaround

fix dependson build workaround #840

Workflow file for this run

name: GitHub Actions Build
on:
push:
paths-ignore:
- "**/*.md"
- '**/*.txt'
branches:
- '**'
pull_request:
paths-ignore:
- "**/*.md"
- '**/*.txt'
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
submodules: recursive
- 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@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}