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
d7f5639ce3
59
.gitea/workflows/create-release.yml
Normal file
59
.gitea/workflows/create-release.yml
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
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: [self-hosted]
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: List Repository Contents
|
||||||
|
run: |
|
||||||
|
echo "Repository contents:"
|
||||||
|
ls -la
|
||||||
|
mkdir -p builds
|
||||||
|
echo "Sample file for testing" > builds/sample.txt
|
||||||
|
|
||||||
|
- 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"
|
||||||
|
|
||||||
|
# Create and push the tag
|
||||||
|
git tag -a "$TAG" -m "Release $TAG" || echo "Tag may already exist"
|
||||||
|
git push --tags || echo "Failed to push tag"
|
||||||
|
|
||||||
|
- 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 }}'
|
@ -81,3 +81,15 @@ jobs:
|
|||||||
name: macos-build
|
name: macos-build
|
||||||
path: Builds/
|
path: Builds/
|
||||||
retention-days: 7
|
retention-days: 7
|
||||||
|
|
||||||
|
- 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 }}'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user