From 3a34230b0a6c554468e5470944c7d1a4bb12815c Mon Sep 17 00:00:00 2001 From: Justine Pelletreau Date: Sat, 22 Jul 2023 19:19:07 +0200 Subject: [PATCH] Removed actions --- .gitea/workflows/release.yml | 56 ------------------------------------ 1 file changed, 56 deletions(-) delete mode 100644 .gitea/workflows/release.yml diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml deleted file mode 100644 index f11a534..0000000 --- a/.gitea/workflows/release.yml +++ /dev/null @@ -1,56 +0,0 @@ -name: Rust-build - -on: - push: - tags: - - '*' - -jobs: - build: - runs-on: ubuntu-latest - container: - image: catthehacker/ubuntu:act-latest - steps: - - - name: Check-out - uses: actions/checkout@v3 - - - name: Install stable toolchain - uses: https://github.com/actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - - - name: Run cargo check - uses: https://github.com/actions-rs/cargo@v1 - with: - command: check - - - name: Install nightly toolchain with clippy available - uses: https://github.com/actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: nightly - override: true - components: clippy - - - name: Run cargo clippy - uses: https://github.com/actions-rs/cargo@v1 - continue-on-error: true # WARNING: only for this example, remove it! - with: - command: clippy - args: -- -D warnings - - - name: Test - run: cargo test - - - name: Build - run: cargo build --release - - - name: Create release - uses: https://gitea.com/actions/release-action@main - with: - files: |- - target/release/portnut - api_key: '${{secrets.RELEASE_TOKEN}}'