From 4697969bdb838dba2aa9ac1f0a65ac63e01cf75c Mon Sep 17 00:00:00 2001 From: MihailRis Date: Wed, 3 Dec 2025 22:48:30 +0300 Subject: [PATCH] remove old unused release pipeline --- .github/workflows/release.yml | 43 ----------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index a1186ce3..00000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,43 +0,0 @@ -# adopted from https://github.com/PrismLauncher/PrismLauncher -name: Release - -on: - push: - tags: - - "v*" - -jobs: - build_release: - name: Build Release - uses: ./.github/workflows/cmake.yml - with: - build_type: Release - upload_artifacts: true - - create_release: - needs: build_release - runs-on: ubuntu-latest - steps: - - name: Download artifacts - uses: actions/download-artifact@v4 - with: - name: VoxelEngine - - name: Pack artifacts - run: | - chmod +x VoxelEngine - zip -r VoxelEngine.zip res VoxelEngine - - name: Grab and store version - run: | - tag_name=$(echo ${{ github.ref }} | grep -oE "v[^/]+$") - echo "VERSION=$tag_name" >> $GITHUB_ENV - - - name: Create release - uses: softprops/action-gh-release@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - tag_name: ${{ github.ref }} - name: VoxelEngine ${{ env.VERSION }} - draft: true - prerelease: false - files: | - VoxelEngine.zip