From f7dfd0db9b72ee97a1aed639f50a9603e885c2e0 Mon Sep 17 00:00:00 2001 From: Xevion Date: Thu, 3 Oct 2024 03:57:27 -0500 Subject: [PATCH] Remove unused import, remove debug artifact step, lockfile --- .github/workflows/build.yaml | 5 ----- Cargo.lock | 2 +- src/main.rs | 1 - 3 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e6a8887..cac7b6f 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -102,11 +102,6 @@ jobs: path: | spotify-player-quickauth.exe - - name: Upload Artifact - uses: actions/upload-artifact@v4 - with: - path: target/${{ matrix.target }}/release/spotify-player-quickauth-v${{ env.RELEASE_VERSION }}-${{ matrix.target }}.* - - name: Release uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/') diff --git a/Cargo.lock b/Cargo.lock index 9ef941b..82064d6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,4 +4,4 @@ version = 3 [[package]] name = "spotify-player-quickauth" -version = "0.1.0" +version = "0.0.4" diff --git a/src/main.rs b/src/main.rs index a62f723..6e33b83 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,6 +1,5 @@ use std::env; use std::process::Command; -use std::io; fn main() { let os = env::consts::OS;