Files
mimic3-keyboard/.gitea/workflows/cd.yaml
Lauren Kaviak fac435df56
Some checks failed
Continuous Releases / build (windows) (push) Failing after 3m12s
update repo reference
2026-03-19 23:19:08 -05:00

27 lines
808 B
YAML

on: [push]
name: Continuous Releases
env:
TARGET_PLATFORM: x86_64-pc-windows-gnu
APT_PACKAGES: mingw-w64
jobs:
build_windows:
name: build (windows)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions-rust-lang/setup-rust-toolchain@v1
- run: apt update && apt install -y ${{ env.APT_PACKAGES }}
- run: rustup target add "${{ env.TARGET_PLATFORM }}"
- run: cargo build --release --target "${{ env.TARGET_PLATFORM }}"
- uses: https://gitea.com/actions/release-action@main
env:
NODE_OPTIONS: '--experimental-fetch' # if nodejs < 18
NODE_TLS_REJECT_UNAUTHORIZED: "false"
with:
files: |-
target/${{ env.TARGET_PLATFORM }}/mimic3-keyboard*