From 5971e6b76b5d0bb5aed1cdd5d88d8b6ce2bc62e5 Mon Sep 17 00:00:00 2001 From: MihailRis Date: Thu, 4 Dec 2025 01:51:43 +0300 Subject: [PATCH] restore jobs --- .github/workflows/release.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ade219f4..60fccd00 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,15 +16,15 @@ env: RELEASE_VERSION: ${{ github.event.inputs.version || 'testrelease' }} BRANCH_NAME: ${{ github.event.inputs.branch || 'main' }} jobs: - # build_linux: - # uses: ./.github/workflows/appimage.yml + build_linux: + uses: ./.github/workflows/appimage.yml build_macos: uses: ./.github/workflows/macos.yml - # build_windows: - # uses: ./.github/workflows/windows.yml + build_windows: + uses: ./.github/workflows/windows-clang.yml publish_release: runs-on: ubuntu-latest - needs: [build_macos] + needs: [build_linux, build_macos, build-windows] steps: - name: Checkout Release Branch uses: actions/checkout@v4 @@ -37,11 +37,11 @@ jobs: - name: Show Artifacts run: | mkdir release - # mv ./artifacts/AppImage/VoxelCore-latest-x86_64.AppImage \ - # ./release/voxelcore-${RELEASE_VERSION}_x86-64.AppImage + mv ./artifacts/AppImage/VoxelCore-latest-x86_64.AppImage \ + ./release/voxelcore-${RELEASE_VERSION}_x86-64.AppImage mv ./artifacts/VoxelEngineMacOs/VoxelEngineMacApp.dmg \ ./release/voxelcore-${RELEASE_VERSION}_macos.dmg - # zip -r ./release/voxelcore-${RELEASE_VERSION}_win64.zip ./artifacts/Windows-Build/* + zip -r ./release/voxelcore-${RELEASE_VERSION}_win64.zip ./artifacts/Windows-Build/* ls -la ./release tree ./release - name: Create Tag