|
|
|
|
@ -9,9 +9,6 @@ jobs:
|
|
|
|
|
create-release:
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
steps:
|
|
|
|
|
- name: Checkout
|
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
|
|
- name: Create Release
|
|
|
|
|
id: create_release
|
|
|
|
|
env:
|
|
|
|
|
@ -19,8 +16,8 @@ jobs:
|
|
|
|
|
run: |
|
|
|
|
|
gh release create ${{ github.ref }}
|
|
|
|
|
|
|
|
|
|
- name: Build for Windows & Linux
|
|
|
|
|
uses: ./.github/workflows/linux-windows-cmake-build.yml
|
|
|
|
|
with:
|
|
|
|
|
release: true
|
|
|
|
|
release_tag: ${{ github.ref }}
|
|
|
|
|
build-release:
|
|
|
|
|
uses: ./.github/workflows/linux-windows-cmake-build.yml
|
|
|
|
|
with:
|
|
|
|
|
release: true
|
|
|
|
|
release_tag: ${{ github.ref }}
|
|
|
|
|
|