From 5b50d2ac101aa775022362a1fc49f4f963e2ddb0 Mon Sep 17 00:00:00 2001 From: tommy Date: Mon, 26 Aug 2024 08:50:24 -0400 Subject: [PATCH] Rename folder .github -> .gitea + rewrite --- .gitea/workflows/rust.yml | 55 ++++++++++++++++++++++++++++++++++++++ .github/workflows/rust.yml | 22 --------------- 2 files changed, 55 insertions(+), 22 deletions(-) create mode 100644 .gitea/workflows/rust.yml delete mode 100644 .github/workflows/rust.yml diff --git a/.gitea/workflows/rust.yml b/.gitea/workflows/rust.yml new file mode 100644 index 0000000..e5b9cdc --- /dev/null +++ b/.gitea/workflows/rust.yml @@ -0,0 +1,55 @@ +name: Rust + +on: + push: + branches: ["master"] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Install rust + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + + - name: Install cross + run: echo CROSSING | cargo install cross + + - name: Build release + run: cross build --release --target x86_64-pc-windows-gnu + + - name: Archive build + uses: actions/upload-artifact@v4 + with: + name: alt_enter_fix + path: x86_64-pc-windows-gnu/release/alt_enter_fix.exe + + release: + needs: build + runs-on: ubuntu-latest + permissions: + contents: write + + steps: + - name: Download release artifact + uses: actions/download-artifact@v4 + with: + name: alt_enter_fix + path: alt_enter_fix + + - name: Get the current date + id: date + run: echo "CURRENT_DATE=$(date +'%Y%m%d')" >> $GITEA_ENV + + - name: Upload release build artifact to GitHub Release + uses: softprops/action-gh-release@v2 + with: + name: ${{ env.CURRENT_DATE }} + tag_name: ${{ env.CURRENT_DATE }} + draft: false + make_latest: true + files: alt_enter_fix/* diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml deleted file mode 100644 index ef08fa2..0000000 --- a/.github/workflows/rust.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Rust - -on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] - -env: - CARGO_TERM_COLOR: always - -jobs: - build: - - runs-on: windows-latest - - steps: - - uses: actions/checkout@v3 - - name: Build - run: cargo build --verbose - - name: Run tests - run: cargo test --verbose