Add action for releases
Some checks failed
Unreal Engine Build / macos-build (push) Has been cancelled
Some checks failed
Unreal Engine Build / macos-build (push) Has been cancelled
This commit is contained in:
parent
26350c197e
commit
29dc009fda
75
.gitea/workflows/create-release.yml
Normal file
75
.gitea/workflows/create-release.yml
Normal file
@ -0,0 +1,75 @@
|
||||
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"
|
||||
# Push the tag explicitly
|
||||
git push origin "$TAG"
|
||||
fi
|
||||
|
||||
# Verify tag exists
|
||||
git fetch --tags
|
||||
echo "Checking out tag: $TAG"
|
||||
git checkout "$TAG" || (echo "Failed to checkout tag" && exit 1)
|
||||
|
||||
# Verify we are on the tag, not on a branch
|
||||
CURRENT_REF=$(git symbolic-ref -q HEAD || git rev-parse HEAD)
|
||||
echo "Current ref: $CURRENT_REF"
|
||||
if [[ "$CURRENT_REF" == *"refs/heads/"* ]]; then
|
||||
echo "ERROR: Still on a branch, not on the tag"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Export tag name for later steps
|
||||
echo "RELEASE_TAG=$TAG" >> $GITHUB_ENV
|
||||
|
||||
- name: Create Release
|
||||
uses: https://gitea.com/actions/release-action@main
|
||||
with:
|
||||
files: |-
|
||||
builds/**
|
||||
api_key: '${{ secrets.GITEA_TOKEN }}'
|
||||
title: 'Release ${{ env.RELEASE_TAG }}'
|
||||
body: '${{ github.event.inputs.description }}'
|
||||
prerelease: ${{ github.event.inputs.prerelease }}
|
||||
tag_name: '${{ env.RELEASE_TAG }}'
|
@ -81,3 +81,52 @@ 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"
|
||||
# Push the tag explicitly
|
||||
git push origin "$TAG"
|
||||
fi
|
||||
|
||||
# Verify tag exists
|
||||
git fetch --tags
|
||||
echo "Checking out tag: $TAG"
|
||||
git checkout "$TAG" || (echo "Failed to checkout tag" && exit 1)
|
||||
|
||||
# Verify we are on the tag, not on a branch
|
||||
CURRENT_REF=$(git symbolic-ref -q HEAD || git rev-parse HEAD)
|
||||
echo "Current ref: $CURRENT_REF"
|
||||
if [[ "$CURRENT_REF" == *"refs/heads/"* ]]; then
|
||||
echo "ERROR: Still on a branch, not on the tag"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Export tag name for later steps
|
||||
echo "RELEASE_TAG=$TAG" >> $GITHUB_ENV
|
||||
|
||||
- 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 ${{ env.RELEASE_TAG }}'
|
||||
body: 'Automated release from CI build #${{ github.run_number }}'
|
||||
prerelease: ${{ github.ref != 'refs/heads/main' }}
|
||||
tag_name: '${{ env.RELEASE_TAG }}'
|
||||
|
Loading…
x
Reference in New Issue
Block a user