Rename folder .github -> .gitea + rewrite
Some checks failed
Rust / build (push) Failing after 4m22s
Rust / release (push) Has been skipped

This commit is contained in:
tommy 2024-08-26 08:50:24 -04:00
parent dd2d5a58b1
commit 4dac66533c
Signed by: tommy
GPG Key ID: E12CE5A632617F4E
2 changed files with 57 additions and 22 deletions

57
.gitea/workflows/rust.yml Normal file
View File

@ -0,0 +1,57 @@
name: Rust
on:
push:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install rustup
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
target: x86_64-pc-windows-gnu
- name: Build release
uses: actions-rs/cargo@v1
with:
command: build
args: --release --target x86_64-pc-windows-gnu
- name: Archive build
uses: actions/upload-artifact@v4
with:
name: alt_enter_fix
path: target/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-release
path: alt_enter_fix-release
- 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-release/*

View File

@ -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