Add action for releases
Some checks failed
Unreal Engine Build / macos-build (push) Failing after 2s
Some checks failed
Unreal Engine Build / macos-build (push) Failing after 2s
This commit is contained in:
parent
26350c197e
commit
c3390cf838
53
.gitea/workflows/create-release.yml
Normal file
53
.gitea/workflows/create-release.yml
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
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: [self-hosted]
|
||||||
|
steps:
|
||||||
|
- name: Manual Clone
|
||||||
|
run: |
|
||||||
|
echo "Current directory: $(pwd)"
|
||||||
|
echo "Repository URL: http://gitea:3000/luckyrobots/luckyworld.git"
|
||||||
|
|
||||||
|
# Clean workspace
|
||||||
|
rm -rf * .[!.]* ..?* 2>/dev/null || true
|
||||||
|
|
||||||
|
# Clone directly using the hostname that works (confirmed by ping)
|
||||||
|
git clone --depth=1 http://gitea:3000/luckyrobots/luckyworld.git .
|
||||||
|
|
||||||
|
# Verify clone succeeded
|
||||||
|
git status
|
||||||
|
|
||||||
|
- name: List Artifacts Directory
|
||||||
|
run: |
|
||||||
|
echo "Creating Builds directory"
|
||||||
|
mkdir -p Builds
|
||||||
|
ls -la
|
||||||
|
|
||||||
|
- 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
|
@ -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: 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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user