diff --git a/.gitea/workflows/create-release.yml b/.gitea/workflows/create-release.yml new file mode 100644 index 00000000..3cad1f3f --- /dev/null +++ b/.gitea/workflows/create-release.yml @@ -0,0 +1,48 @@ +name: Create Release + +on: + workflow_dispatch: + inputs: + build_id: + description: 'Build Run ID to use artifacts from' + required: true + default: '' + version: + description: 'Version for this release (e.g. 1.0.0)' + required: true + default: '' + prerelease: + description: 'Is this a pre-release?' + required: true + default: 'false' + type: boolean + +jobs: + create-release: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Download artifact from previous run + uses: actions/download-artifact@v3 + with: + name: macos-build + path: Builds/ + run-id: ${{ github.event.inputs.build_id }} + + - name: List downloaded artifacts + run: | + echo "Downloaded artifacts:" + ls -la Builds/ + + - name: Create Release + uses: ncipollo/release-action@v1 + with: + artifacts: "Builds/*" + token: ${{ secrets.GITHUB_TOKEN }} + generateReleaseNotes: true + tag: v${{ github.event.inputs.version }} + name: Release v${{ github.event.inputs.version }} + prerelease: ${{ github.event.inputs.prerelease }} + draft: false \ No newline at end of file diff --git a/.gitea/workflows/unreal-build.yml b/.gitea/workflows/unreal-build.yml index 9ab0c52f..35ccae5a 100644 --- a/.gitea/workflows/unreal-build.yml +++ b/.gitea/workflows/unreal-build.yml @@ -81,3 +81,15 @@ jobs: name: macos-build path: Builds/ retention-days: 7 + + - name: Create Release + if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' + uses: ncipollo/release-action@v1 + with: + artifacts: "Builds/*" + token: ${{ secrets.GITHUB_TOKEN }} + generateReleaseNotes: true + tag: v${{ github.run_number }} + name: Release v${{ github.run_number }} + prerelease: ${{ github.ref != 'refs/heads/main' }} + draft: false