Rename folder .github -> .gitea + rewrite
This commit is contained in:
parent
dd2d5a58b1
commit
0f4e05820f
58
.gitea/workflows/rust.yml
Normal file
58
.gitea/workflows/rust.yml
Normal file
@ -0,0 +1,58 @@
|
||||
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: cargo install cross
|
||||
|
||||
- name: Update path
|
||||
run: export PATH="$HOME/.cargo/bin:$HOME/.cargo/env:$PATH"
|
||||
|
||||
- name: Build release
|
||||
run: cross build --target x86_64-pc-windows-gnu --release
|
||||
|
||||
- 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