Create Release #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .github/workflows/release.yml | |
name: Create Release | |
on: | |
workflow_dispatch: | |
inputs: | |
tag_name: | |
description: 'Tag for the release (e.g., v1.0.0)' | |
required: true | |
release_name: | |
description: 'Name of the release' | |
required: true | |
body: | |
description: 'Release description' | |
required: false | |
run_id: | |
description: 'Run ID of the build workflow to download artifacts from' | |
required: true | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
env: | |
BUILD_PREFIX: ddnet | |
CLIENT_NAME: TClient | |
TARGET_REPOSITORY: ${{ github.repository }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Download Ubuntu artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: ${{ env.BUILD_PREFIX }}-ubuntu-latest | |
path: ./artifacts/ubuntu | |
github-token: ${{ secrets.GH_PAT }} | |
repository: ${{ env.TARGET_REPOSITORY }} | |
run-id: ${{ github.event.inputs.run_id }} | |
- name: Download Windows artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: ${{ env.BUILD_PREFIX }}-windows-latest | |
path: ./artifacts/windows | |
github-token: ${{ secrets.GH_PAT }} | |
repository: ${{ env.TARGET_REPOSITORY }} | |
run-id: ${{ github.event.inputs.run_id }} | |
- name: Download macOS artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: ${{ env.BUILD_PREFIX }}-macOS-latest | |
path: ./artifacts/macOS | |
github-token: ${{ secrets.GH_PAT }} | |
repository: ${{ env.TARGET_REPOSITORY }} | |
run-id: ${{ github.event.inputs.run_id }} | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.event.inputs.tag_name }} | |
release_name: ${{ github.event.inputs.release_name }} | |
body: ${{ github.event.inputs.body }} | |
draft: false | |
prerelease: false | |
- name: Rename and Move Artifacts | |
run: | | |
declare -a multi_ext=("tar.gz" "tar.bz2" "tar.xz" "tar.Z") | |
for dir in ./artifacts/*/ ; do | |
os=$(basename "$dir") | |
# Find the single file in the OS directory | |
file=$(find "$dir" -type f | head -n 1) | |
if [ -z "$file" ]; then | |
echo "No artifact found in directory $dir. Skipping." | |
continue | |
fi | |
filename=$(basename "$file") | |
extension="" | |
for ext in "${multi_ext[@]}"; do | |
if [[ "$filename" == *.$ext ]]; then | |
extension="$ext" | |
break | |
fi | |
done | |
if [ -z "$extension" ]; then | |
extension="${filename##*.}" | |
fi | |
new_name="${CLIENT_NAME}-${os}.${extension}" | |
echo "Renaming $file to $new_name" | |
mv "$file" "./artifacts/$new_name" | |
echo "Moved $new_name to ./artifacts/" | |
done | |
- name: Extract and Copy DDNet.exe | |
run: | | |
# Define variables | |
WINDOWS_ZIP="./artifacts/${CLIENT_NAME}-windows.zip" | |
TEMP_DIR="./artifacts/windows_temp" | |
mkdir -p "$TEMP_DIR" | |
echo "Extracting $WINDOWS_ZIP to $TEMP_DIR" | |
unzip -q "$WINDOWS_ZIP" -d "$TEMP_DIR" | |
INNER_ZIPS=$(find "$TEMP_DIR" -type f -name "*.zip") | |
if [ -z "$INNER_ZIPS" ]; then | |
echo "No inner zip files found in $WINDOWS_ZIP." | |
exit 1 | |
fi | |
for inner_zip in $INNER_ZIPS; do | |
echo "Extracting inner zip file $inner_zip" | |
unzip -q "$inner_zip" -d "$(dirname "$inner_zip")" | |
done | |
DDNET_EXE=$(find "$TEMP_DIR" -type f -name "DDNet.exe") | |
if [ -z "$DDNET_EXE" ]; then | |
echo "DDNet.exe not found in the extracted files." | |
exit 1 | |
fi | |
echo "Copying DDNet.exe to ./artifacts/" | |
cp "$DDNET_EXE" ./artifacts/ | |
rm -rf "$TEMP_DIR" | |
echo "DDNet.exe has been successfully copied to ./artifacts/" | |
- name: List artifacts directory | |
run: | | |
echo "Listing ./artifacts directory:" | |
ls -R ./artifacts | |
- name: Upload Ubuntu | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./artifacts/${{ env.CLIENT_NAME }}-ubuntu.tar.xz | |
asset_name: ${{ env.CLIENT_NAME }}-ubuntu.tar.xz | |
asset_content_type: application/tar.xz | |
- name: Upload Windows | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./artifacts/${{ env.CLIENT_NAME }}-windows.zip | |
asset_name: ${{ env.CLIENT_NAME }}-windows.zip | |
asset_content_type: application/zip | |
- name: Upload macOS | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./artifacts/${{ env.CLIENT_NAME }}-macOS.dmg | |
asset_name: ${{ env.CLIENT_NAME }}-macOS.dmg | |
asset_content_type: application/dmg | |
- name: Upload Raw exe | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./artifacts/DDNet.exe | |
asset_name: DDNet.exe | |
asset_content_type: application/dmg |