From 5a9cf8201e1b7fba677a1531cafaa7397d3b6807 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xory=20=E2=80=8B?= Date: Thu, 18 Apr 2024 10:51:28 +0000 Subject: [PATCH] rm: remove github actions workflow --- .github/workflows/rust.yml | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/rust.yml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml deleted file mode 100644 index 2316c64..0000000 --- a/.github/workflows/rust.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Rust - -on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] - -env: - CARGO_TERM_COLOR: always - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: Build release - run: cargo build --release --verbose - - - name: Automatic Releases - uses: marvinpinto/action-automatic-releases@v1.2.1 - with: - # GitHub secret token - repo_token: ${{ secrets.GITHUB_TOKEN }} - # Release title (for automatic releases) - title: Automatic release - # Assets to upload to the release - files: target/release/mrfetch - # Git tag - automatic_release_tag: AUTO - # Prerelease - prerelease: true -