diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 58326f29a..f3550c244 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,3 +49,13 @@ jobs: name: Windows Builds uses: ./.github/workflows/windows.yml secrets: inherit + + production-check: + name : Production Check + needs: [format, linux, windows] + if: success() + runs-on: ubuntu-latest + steps: + - name: Run Production Checks + run: echo "All previous builds passed. Running production checks..." + diff --git a/.github/workflows/deploy-sdk.yml b/.github/workflows/deploy-sdk.yml index 96f97b759..d18342cab 100644 --- a/.github/workflows/deploy-sdk.yml +++ b/.github/workflows/deploy-sdk.yml @@ -249,15 +249,11 @@ jobs: uses: softprops/action-gh-release@v2 with: name: "Chained Engine SDK v${{ steps.info.outputs.version }}" - tag_name: "release-v${{ steps.info.outputs.version }}-${{ steps.info.outputs.date }}" + tag_name: "v${{ steps.info.outputs.version }}" files: release-assets/* body: | ### Chained Engine SDK - **Version**: v${{ steps.info.outputs.version }} - **Build Date**: ${{ steps.info.outputs.date }} - - **Platforms**: Linux (clang), Windows (clang) - draft: false - prerelease: false - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - + + Automated production binaries generated by CI pipelines. Download the `.zip` or `.tar.gz` bundle for your target platform below.