Skip to content

i am beyond stupid

i am beyond stupid #32

Workflow file for this run

name: Build Application and Make Release
on:
push:
tags:
- "*"
jobs:
build_release:
name: Build Release
uses: ./.github/workflows/build.yml
with:
build_type: Release
is_qt_cached: false
secrets:
SPARKLE_ED25519_KEY: ${{ secrets.SPARKLE_ED25519_KEY }}
WINDOWS_CODESIGN_CERT: ${{ secrets.WINDOWS_CODESIGN_CERT }}
WINDOWS_CODESIGN_PASSWORD: ${{ secrets.WINDOWS_CODESIGN_PASSWORD }}
APPLE_CODESIGN_CERT: ${{ secrets.APPLE_CODESIGN_CERT }}
APPLE_CODESIGN_PASSWORD: ${{ secrets.APPLE_CODESIGN_PASSWORD }}
APPLE_CODESIGN_ID: ${{ secrets.APPLE_CODESIGN_ID }}
APPLE_NOTARIZE_APPLE_ID: ${{ secrets.APPLE_NOTARIZE_APPLE_ID }}
APPLE_NOTARIZE_TEAM_ID: ${{ secrets.APPLE_NOTARIZE_TEAM_ID }}
APPLE_NOTARIZE_PASSWORD: ${{ secrets.APPLE_NOTARIZE_PASSWORD }}
CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
GPG_PRIVATE_KEY_ID: ${{ secrets.GPG_PRIVATE_KEY_ID }}
create_release:
needs: build_release
runs-on: ubuntu-latest
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: "true"
path: "ElyPrismLauncher-source"
- name: Download artifacts
uses: actions/download-artifact@v4
- name: Grab and store version
run: |
tag_name=$(echo ${{ github.ref }} | grep -oE "[^/]+$")
echo "VERSION=$tag_name" >> $GITHUB_ENV
- name: Package artifacts properly
run: |
mv ${{ github.workspace }}/ElyPrismLauncher-source ElyPrismLauncher-${{ env.VERSION }}
mv ElyPrismLauncher-Linux-Qt6-Portable*/ElyPrismLauncher-portable.tar.gz ElyPrismLauncher-Linux-Qt6-Portable-${{ env.VERSION }}.tar.gz
mv ElyPrismLauncher-Linux-Qt5-Portable*/ElyPrismLauncher-portable.tar.gz ElyPrismLauncher-Linux-Qt5-Portable-${{ env.VERSION }}.tar.gz
mv ElyPrismLauncher-*.AppImage/ElyPrismLauncher-*.AppImage ElyPrismLauncher-Linux-x86_64.AppImage
mv ElyPrismLauncher-*.AppImage.zsync/ElyPrismLauncher-*.AppImage.zsync ElyPrismLauncher-Linux-x86_64.AppImage.zsync
mv ElyPrismLauncher-*Flatpak*/ElyPrismLauncher-*.flatpak ElyPrismLauncher-Linux-x86_64.flatpak
mv ElyPrismLauncher-macOS-Legacy*/ElyPrismLauncher.zip ElyPrismLauncher-macOS-Legacy-${{ env.VERSION }}.zip
mv ElyPrismLauncher-macOS*/ElyPrismLauncher.zip ElyPrismLauncher-macOS-${{ env.VERSION }}.zip
tar --exclude='.git' -czf ElyPrismLauncher-${{ env.VERSION }}.tar.gz ElyPrismLauncher-${{ env.VERSION }}
for d in ElyPrismLauncher-Windows-MSVC*; do
cd "${d}" || continue
LEGACY="$(echo -n ${d} | grep -o Legacy || true)"
ARM64="$(echo -n ${d} | grep -o arm64 || true)"
INST="$(echo -n ${d} | grep -o Setup || true)"
PORT="$(echo -n ${d} | grep -o Portable || true)"
NAME="ElyPrismLauncher-Windows-MSVC"
test -z "${LEGACY}" || NAME="${NAME}-Legacy"
test -z "${ARM64}" || NAME="${NAME}-arm64"
test -z "${PORT}" || NAME="${NAME}-Portable"
test -z "${INST}" || mv ElyPrismLauncher-*.exe ../${NAME}-Setup-${{ env.VERSION }}.exe
test -n "${INST}" || zip -r -9 "../${NAME}-${{ env.VERSION }}.zip" *
cd ..
done
for d in ElyPrismLauncher-Windows-MinGW-w64*; do
cd "${d}" || continue
INST="$(echo -n ${d} | grep -o Setup || true)"
PORT="$(echo -n ${d} | grep -o Portable || true)"
NAME="ElyPrismLauncher-Windows-MinGW-w64"
test -z "${PORT}" || NAME="${NAME}-Portable"
test -z "${INST}" || mv ElyPrismLauncher-*.exe ../${NAME}-Setup-${{ env.VERSION }}.exe
test -n "${INST}" || zip -r -9 "../${NAME}-${{ env.VERSION }}.zip" *
cd ..
done
- name: Create release
id: create_release
uses: softprops/action-gh-release@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag_name: ${{ github.ref }}
name: Prism Launcher ${{ env.VERSION }}
draft: true
prerelease: false
files: |
ElyPrismLauncher-Linux-Qt5-Portable-${{ env.VERSION }}.tar.gz
ElyPrismLauncher-Linux-x86_64.AppImage
ElyPrismLauncher-Linux-x86_64.AppImage.zsync
ElyPrismLauncher-Linux-Qt6-Portable-${{ env.VERSION }}.tar.gz
ElyPrismLauncher-Windows-MinGW-w64-${{ env.VERSION }}.zip
ElyPrismLauncher-Windows-MinGW-w64-Portable-${{ env.VERSION }}.zip
ElyPrismLauncher-Windows-MinGW-w64-Setup-${{ env.VERSION }}.exe
ElyPrismLauncher-Windows-MSVC-arm64-${{ env.VERSION }}.zip
ElyPrismLauncher-Windows-MSVC-arm64-Portable-${{ env.VERSION }}.zip
ElyPrismLauncher-Windows-MSVC-arm64-Setup-${{ env.VERSION }}.exe
ElyPrismLauncher-Windows-MSVC-${{ env.VERSION }}.zip
ElyPrismLauncher-Windows-MSVC-Portable-${{ env.VERSION }}.zip
ElyPrismLauncher-Windows-MSVC-Setup-${{ env.VERSION }}.exe
ElyPrismLauncher-macOS-${{ env.VERSION }}.zip
ElyPrismLauncher-macOS-Legacy-${{ env.VERSION }}.zip
ElyPrismLauncher-${{ env.VERSION }}.tar.gz