mirror of
https://github.com/chatmail/core.git
synced 2026-04-05 15:02:11 +03:00
25 lines
548 B
YAML
25 lines
548 B
YAML
# Manually triggered GitHub Actions workflow
|
|
# to build a Windows repl.exe which users can
|
|
# download to debug complex bugs.
|
|
|
|
name: Build Windows REPL .exe
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build_repl:
|
|
name: Build REPL example
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Build
|
|
run: cargo build -p deltachat-repl --features vendored
|
|
|
|
- name: Upload binary
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: repl.exe
|
|
path: "target/debug/deltachat-repl.exe"
|