Build Windows REPL .exe #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: DeterminateSystems/nix-installer-action@main | |
- name: Build | |
run: nix build .#deltachat-repl-win64 | |
- name: Upload binary | |
uses: actions/upload-artifact@v3 | |
with: | |
name: repl.exe | |
path: "result/bin/deltachat-repl.exe" |