diff --git a/.github/workflows/eepp-linux-build-check.yml b/.github/workflows/eepp-linux-build-check.yml index 4a56f136f..ef0e1da06 100644 --- a/.github/workflows/eepp-linux-build-check.yml +++ b/.github/workflows/eepp-linux-build-check.yml @@ -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 diff --git a/.github/workflows/eepp-macos-build-check.yml b/.github/workflows/eepp-macos-build-check.yml index b00df8f36..7fe0b92ea 100644 --- a/.github/workflows/eepp-macos-build-check.yml +++ b/.github/workflows/eepp-macos-build-check.yml @@ -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 diff --git a/.github/workflows/eepp-windows-build-check.yml b/.github/workflows/eepp-windows-build-check.yml index e873536d9..aebc0146d 100644 --- a/.github/workflows/eepp-windows-build-check.yml +++ b/.github/workflows/eepp-windows-build-check.yml @@ -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