commit b7619089441d63832ae3bd94a66947140fc38570 parent 6057d5932f03a20c353e3a3097b01dc3f646c589 Author: Minerva_juppiter <94231606+minerva-jupiter@users.noreply.github.com> Date: Fri, 7 Nov 2025 22:19:18 +0900 Delete .github/workflows/release.yml Diffstat:
| D | .github/workflows/release.yml | | | 86 | ------------------------------------------------------------------------------- |
1 file changed, 0 insertions(+), 86 deletions(-)
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml @@ -1,86 +0,0 @@ -name: Release - -permissions: - contents: write - -on: - push: - tags: - - v* - -env: - CARGO_TERM_COLOR: always - -jobs: - Test: - uses: ./.github/workflows/testing.yml - - build: - needs: [Test] - runs-on: ${{ matrix.runner }} - env: - PROJECT_NAME: auto-musik - strategy: - fail-fast: false - matrix: - include: - - target: x86_64-unknown-linux-gnu - extension: "" - runner: ubuntu-latest - cross: true - - target: x86_64-pc-windows-msvc - extension: ".exe" - runner: windows-latest - cross: false - - target: aarch64-unknown-linux-gnu - extension: "" - runner: ubuntu-latest - cross: true - - target: aarch64-pc-windows-msvc - extension: ".exe" - runner: windows-latest - cross: false - - target: armv7-unknown-linux-gnueabihf - extension: "" - runner: ubuntu-latest - cross: true - - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Install Dependencies on Windows - if: ${{ matrix.runner == 'windows-latest' }} - run: | - choco install make --yes - - name: Install Dependencies on MacOS - if: ${{ matrix.runner == 'macos-latest' }} - run: | - brew install make - - - name: Install cross (if needed) - if: ${{ matrix.cross }} - run: cargo install cross --git https://github.com/cross-rs/cross - - - name: Build Project on cross - if: ${{ matrix.cross }} - run: | - cross build --release --target ${{ matrix.target }} --verbose - - name: Build Project - if: ${{ !matrix.cross }} - run: | - rustup target add ${{ matrix.target }} - cargo build --release --target ${{ matrix.target }} --verbose - - - name: Rename Artifacts - shell: bash - run: | - mv target/${{ matrix.target }}/release/${{ env.PROJECT_NAME }}{,-${{ github.ref_name }}-${{ matrix.target }}${{ matrix.extension }}} - - - name: Release Artifacts - uses: softprops/action-gh-release@v2 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - files: | - target/${{ matrix.target }}/release/${{ env.PROJECT_NAME }}-${{ github.ref_name }}-${{ matrix.target }}${{ matrix.extension }}