mirror of
https://github.com/chatmail/core.git
synced 2026-04-06 23:52:11 +03:00
Determinate Systems GitHub action installs Nix version from Determinate Systems and Determinate Nix Installer has dropped support for installing upstream Nix: https://determinate.systems/blog/installer-dropping-upstream/ This commit switches to upstream Nix to avoid accidentally depending on any features of Determinate Nix.
29 lines
712 B
YAML
29 lines
712 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:
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
build_repl:
|
|
name: Build REPL example
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
with:
|
|
show-progress: false
|
|
persist-credentials: false
|
|
- uses: cachix/install-nix-action@9280e7aca88deada44c930f1e2c78e21c3ae3edd # v31
|
|
- name: Build
|
|
run: nix build .#deltachat-repl-win64
|
|
- name: Upload binary
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: repl.exe
|
|
path: "result/bin/deltachat-repl.exe"
|