Skip to content

Release

Release #29

Workflow file for this run

name: Release
on:
workflow_dispatch:
jobs:
build:
uses: ./.github/workflows/build.yml
release:
runs-on: ubuntu-24.04
needs: build
steps:
- uses: actions/checkout@v4
- name: Download Windows build
uses: actions/download-artifact@v4
with:
name: aethervr-x86_64-windows
- name: Download Linux build
uses: actions/download-artifact@v4
with:
name: aethervr-x86_64-linux
- name: Download Windows build
uses: actions/download-artifact@v4
with:
name: aethervr-aarch64-macos
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release create \
-t "AetherVR $(date -Idate)" \
-n "AetherVR Release $(date -Idate)" \
"$(date -Idate)" \
aethervr-x86_64-windows.zip \
aethervr-x86_64-linux.zip \
aethervr-aarch64-macos.zip