Browse Source

yml is weird...

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.5.5
falkTX 1 year ago
parent
commit
518d813c5b
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      .github/workflows/release.yml

+ 6
- 6
.github/workflows/release.yml View File

@@ -50,7 +50,7 @@ jobs:
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v3
with: with:
name: macOS dmg name: macOS dmg
path: *.dmg
path: ./*.dmg
- uses: softprops/action-gh-release@v1 - uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/') if: startsWith(github.ref, 'refs/tags/')
with: with:
@@ -59,7 +59,7 @@ jobs:
draft: false draft: false
prerelease: false prerelease: false
files: | files: |
path: *.dmg
path: ./*.dmg


# linux with win32 cross-compilation # linux with win32 cross-compilation
win32: win32:
@@ -113,7 +113,7 @@ jobs:
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v3
with: with:
name: win32 zip name: win32 zip
path: *.zip
path: ./*.zip
- uses: softprops/action-gh-release@v1 - uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/') if: startsWith(github.ref, 'refs/tags/')
with: with:
@@ -122,7 +122,7 @@ jobs:
draft: false draft: false
prerelease: false prerelease: false
files: | files: |
path: *.zip
path: ./*.zip


# linux with win64 cross-compilation # linux with win64 cross-compilation
win64: win64:
@@ -177,7 +177,7 @@ jobs:
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v3
with: with:
name: win64 zip name: win64 zip
path: *.zip
path: ./*.zip
- uses: softprops/action-gh-release@v1 - uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/') if: startsWith(github.ref, 'refs/tags/')
with: with:
@@ -186,4 +186,4 @@ jobs:
draft: false draft: false
prerelease: false prerelease: false
files: | files: |
path: *.zip
path: ./*.zip

Loading…
Cancel
Save