Rename folder .github -> .gitea + rewrite
This commit is contained in:
parent
dd2d5a58b1
commit
2f27c3c538
53
.gitea/workflows/rust.yml
Normal file
53
.gitea/workflows/rust.yml
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
name: Rust
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: ["master"]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install cross compilation dependencies
|
||||||
|
run: apt-get update | apt-get install -y mingw-w64
|
||||||
|
|
||||||
|
- 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: 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/*
|
22
.github/workflows/rust.yml
vendored
22
.github/workflows/rust.yml
vendored
@ -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
|
|
Loading…
Reference in New Issue
Block a user