Skip to content

Create Release

Create Release #8

Workflow file for this run

# .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
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: Zip Artifacts
run: |
for dir in ./artifacts/*/ ; do
os=$(basename "$dir")
zip_file="./artifacts/${os}.zip"
echo "Zipping contents of $dir into $zip_file"
zip -j "$zip_file" "$dir"/*
done
- 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/ubuntu/${{ env.BUILD_PREFIX }}-ubuntu-latest.zip
asset_name: ${{ env.BUILD_PREFIX }}-ubuntu-latest.zip
asset_content_type: application/zip
- 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/windows/${{ env.BUILD_PREFIX }}-windows-latest.zip
asset_name: ${{ env.BUILD_PREFIX }}-windows-latest.zip
asset_content_type: application/zip
- name: Upload OS
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./artifacts/macOS/${{ env.BUILD_PREFIX }}-macOS-latest.zip
asset_name: ${{ env.BUILD_PREFIX }}-macOS-latest.zip
asset_content_type: application/zip