diff --git a/.gitea/workflows/tag_release.yml b/.gitea/workflows/tag_release.yml index ace8180..ee32b4a 100644 --- a/.gitea/workflows/tag_release.yml +++ b/.gitea/workflows/tag_release.yml @@ -3,7 +3,6 @@ name: Release Tagging on: push: branches: - - main - devel jobs: @@ -18,7 +17,7 @@ jobs: - name: Install Rust uses: actions-rs/toolchain@v1 with: - toolchain: 1.86.0 + toolchain: 1.88.0 components: cargo - name: Extract Version from Cargo.toml @@ -50,6 +49,3 @@ jobs: release_name: Release ${{ steps.version.outputs.project_tag_release }} body: | Release of version ${{ steps.version.outputs.project_tag_release }} - # draft: false - # prerelease: ${{ startsWith(github.ref, 'v') == false }} # prerelease if not a valid release tag - diff --git a/src/main.rs b/src/main.rs index 9362977..aa85b54 100644 --- a/src/main.rs +++ b/src/main.rs @@ -31,7 +31,6 @@ async fn main() -> Result<(), Box> { (song_queue_id, song_queue_path), (coverart_queue_id, coverart_queue_path), )) => { - // TODO: Wipe data from song and coverart queues match wipe_data_from_queues( &app_base_url, &song_queue_id, diff --git a/src/the_rest.rs b/src/the_rest.rs index b3f0b2e..dbf85fb 100644 --- a/src/the_rest.rs +++ b/src/the_rest.rs @@ -98,7 +98,6 @@ pub mod wipe_data { } } } - // TODO: Wipe data from queued coverart pub mod coverart_queue { pub async fn wipe_data( base_url: &String,