From 12026b72aeee373e99312c92723e55053d0aa8cb Mon Sep 17 00:00:00 2001 From: Goran Lazarevski Date: Fri, 28 Mar 2025 12:23:40 +0100 Subject: [PATCH] Add action for releases --- .gitea/workflows/create-release.yml | 62 +++++++++++++++++++++++++++++ .gitea/workflows/unreal-build.yml | 36 +++++++++++++++++ 2 files changed, 98 insertions(+) create mode 100644 .gitea/workflows/create-release.yml diff --git a/.gitea/workflows/create-release.yml b/.gitea/workflows/create-release.yml new file mode 100644 index 00000000..117d7b52 --- /dev/null +++ b/.gitea/workflows/create-release.yml @@ -0,0 +1,62 @@ +name: Create Release + +on: + workflow_dispatch: + inputs: + 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 + description: + description: 'Release description' + required: false + default: 'New release' + +jobs: + create-release: + runs-on: macos + steps: + - name: Checkout repository + uses: actions/checkout@v3 + with: + lfs: true + fetch-depth: 0 + + - name: Create Tag + run: | + # Set tag name + TAG="v${{ github.event.inputs.version }}" + echo "Creating git tag: $TAG" + + # Configure git + git config --global user.email "actions@gitea.com" + git config --global user.name "Gitea Actions" + + # Check if tag already exists + if git rev-parse "$TAG" >/dev/null 2>&1; then + echo "Tag $TAG already exists" + else + echo "Creating new tag $TAG" + git tag -a "$TAG" -m "Release $TAG" + git push origin "$TAG" + fi + + # Verify tag exists + git fetch --tags + git checkout "$TAG" || (echo "Failed to checkout tag" && exit 1) + + - name: Create Release + uses: https://gitea.com/actions/release-action@main + with: + files: |- + builds/** + api_key: '${{ secrets.GITEA_TOKEN }}' + title: 'Release v${{ github.event.inputs.version }}' + body: '${{ github.event.inputs.description }}' + prerelease: ${{ github.event.inputs.prerelease }} + tag_name: 'v${{ github.event.inputs.version }}' \ No newline at end of file diff --git a/.gitea/workflows/unreal-build.yml b/.gitea/workflows/unreal-build.yml index 9ab0c52f..b58d8aa2 100644 --- a/.gitea/workflows/unreal-build.yml +++ b/.gitea/workflows/unreal-build.yml @@ -81,3 +81,39 @@ jobs: name: macos-build path: Builds/ retention-days: 7 + + - name: Create Tag + if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' + run: | + # Set tag name + TAG="v${{ github.run_number }}" + echo "Creating git tag: $TAG" + + # Configure git + git config --global user.email "actions@gitea.com" + git config --global user.name "Gitea Actions" + + # Check if tag already exists + if git rev-parse "$TAG" >/dev/null 2>&1; then + echo "Tag $TAG already exists" + else + echo "Creating new tag $TAG" + git tag -a "$TAG" -m "Release $TAG" + git push origin "$TAG" + fi + + # Verify tag exists + git fetch --tags + git checkout "$TAG" || (echo "Failed to checkout tag" && exit 1) + + - name: Create Release + if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' + uses: https://gitea.com/actions/release-action@main + with: + files: |- + Builds/** + api_key: '${{ secrets.GITEA_TOKEN }}' + title: 'Release v${{ github.run_number }}' + body: 'Automated release from CI build #${{ github.run_number }}' + prerelease: ${{ github.ref != 'refs/heads/main' }} + tag_name: 'v${{ github.run_number }}'