From e59ea4851f9722aaaf158f012726339fcc7ec3d9 Mon Sep 17 00:00:00 2001 From: Musselman Date: Tue, 13 Feb 2024 11:42:50 -0600 Subject: [PATCH] Remove Actions Workflow --- .forgejo/workflows/build-and-release.yml | 32 ------------------------ 1 file changed, 32 deletions(-) delete mode 100644 .forgejo/workflows/build-and-release.yml diff --git a/.forgejo/workflows/build-and-release.yml b/.forgejo/workflows/build-and-release.yml deleted file mode 100644 index 0a63a3a..0000000 --- a/.forgejo/workflows/build-and-release.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Build and Publish Rust Binary -on: [push] -jobs: - build: - runs-on: docker - steps: - - name: Set up Rust - uses: msrd0/rust-toolchain@nightly - - name: Check out code - uses: actions/checkout@v4 - - name: Build binary - run: cargo build --release - - name: Publish - if: startsWith(github.ref, 'refs/tags/') - run: | - wget https://git.privacyquest.net/musselman/action_config_files/raw/branch/main/config.toml - cargo publish - #- uses: actions/upload-artifact@v3 - #with: - #name: version_name_generator - #path: ./target/release/version_name_generator - #- uses: actions/download-artifact@v3 - #with: - #name: version_name_generator - # - name: Publish binary - #uses: earl-warren/action-gh-release@v1 - #if: startsWith(github.ref, 'refs/tags/') - #with: - #fail_on_unmatched_files: true - #files: | - #version_name_generator -