This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
fix SDL version #10
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: Build Release | |
on: | |
push: | |
tags: | |
- "Release*" | |
jobs: | |
call-build-win_x64-vc: | |
name: Build win_x64 VC | |
uses: ./.github/workflows/build-visual_studio.yml | |
call-build-win_x64-msys2: | |
name: Build win_x64 MSYS2 | |
uses: ./.github/workflows/build-msys2.yml | |
create-release: | |
name: Create Release | |
needs: [call-build-win_x64-vc, call-build-win_x64-msys2] | |
runs-on: windows-2022 | |
steps: | |
- name: Download win_x64 artifacts | |
uses: actions/download-artifact@v3 | |
- name: Create Release | |
uses: ncipollo/release-action@v1.10.0 | |
with: | |
artifacts: "**/*.zip" | |
body: "Automatic release built with Github actions." |