From 0dfcdd4ae62142d99c9ddc9469d72652632573c3 Mon Sep 17 00:00:00 2001 From: WombatFromHell Date: Sun, 2 Jun 2024 19:50:43 -0600 Subject: [PATCH] Merged 'testing' branch --- .github/build.yaml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/build.yaml diff --git a/.github/build.yaml b/.github/build.yaml deleted file mode 100644 index ab950ca..0000000 --- a/.github/build.yaml +++ /dev/null @@ -1,30 +0,0 @@ -name: Build and Upload Binary - -on: - push: - branches: - - main # only trigger on merges - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - name: Get project version - id: get_version - run: | - VERSION=$(sed -nE 's/^version = "(.*)"/\1/p' Cargo.toml) - echo "::set-output name=version::$VERSION" - - - name: Build project - run: | - chmod +x ./build.sh - ./build.sh - - - name: Upload Binary - uses: actions/upload-artifact@v3 - with: - name: veridian-controller - path: ./target/appimage/veridian-controller_${{ steps.get_version.outputs.version }}.AppImage