Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
Martín Lucas Golini
2026-08-22 20:32:20 -03:00
3 changed files with 33 additions and 1 deletions

View File

@@ -48,6 +48,17 @@ jobs:
with:
name: linux-eepp-sdk-x86_64
path: projects/linux/sdk/eepp-sdk-*.tar.gz
- name: Publish nightly SDK package
if: github.ref == 'refs/heads/develop'
uses: softprops/action-gh-release@v3
with:
tag_name: ${{ steps.sdk_version.outputs.version }}
draft: false
prerelease: true
generate_release_notes: false
fail_on_unmatched_files: true
files: |
projects/linux/sdk/eepp-sdk-linux-x86_64-nightly.tar.gz
- name: Publish stable release package
if: startsWith(github.ref, 'refs/tags/eepp-')
uses: softprops/action-gh-release@v3

View File

@@ -42,6 +42,17 @@ jobs:
with:
name: macos-eepp-sdk-arm64
path: projects/macos/sdk/eepp-sdk-*.tar.gz
- name: Publish nightly SDK package
if: github.ref == 'refs/heads/develop'
uses: softprops/action-gh-release@v3
with:
tag_name: ${{ steps.sdk_version.outputs.version }}
draft: false
prerelease: true
generate_release_notes: false
fail_on_unmatched_files: true
files: |
projects/macos/sdk/eepp-sdk-macos-arm64-nightly.tar.gz
- name: Publish stable release package
if: startsWith(github.ref, 'refs/tags/eepp-')
uses: softprops/action-gh-release@v3
@@ -53,7 +64,6 @@ jobs:
fail_on_unmatched_files: true
files: |
projects/macos/sdk/eepp-sdk-macos-arm64-*.tar.gz
- name: Unit Tests
- name: Unit Tests
run: |
set +e

View File

@@ -57,6 +57,17 @@ jobs:
with:
name: windows-eepp-sdk-x86_64-msvc
path: projects\windows\sdk\eepp-sdk-*.zip
- name: Publish nightly SDK package
if: github.ref == 'refs/heads/develop'
uses: softprops/action-gh-release@v3
with:
tag_name: ${{ steps.sdk_version.outputs.version }}
draft: false
prerelease: true
generate_release_notes: false
fail_on_unmatched_files: true
files: |
projects\windows\sdk\eepp-sdk-windows-x86_64-msvc-nightly.zip
- name: Publish stable release package
if: startsWith(github.ref, 'refs/tags/eepp-')
uses: softprops/action-gh-release@v3