mirror of
https://github.com/chatmail/core.git
synced 2026-04-06 15:42:10 +03:00
Bumps [cachix/install-nix-action](https://github.com/cachix/install-nix-action) from 31.8.4 to 31.9.0.
- [Release notes](https://github.com/cachix/install-nix-action/releases)
- [Changelog](https://github.com/cachix/install-nix-action/blob/master/RELEASE.md)
- [Commits](0b0e072294...4e002c8ec8)
---
updated-dependencies:
- dependency-name: cachix/install-nix-action
dependency-version: 31.9.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
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@v6
|
|
with:
|
|
show-progress: false
|
|
persist-credentials: false
|
|
- uses: cachix/install-nix-action@4e002c8ec80594ecd40e759629461e26c8abed15 # v31
|
|
- name: Build
|
|
run: nix build .#deltachat-repl-win64
|
|
- name: Upload binary
|
|
uses: actions/upload-artifact@v6
|
|
with:
|
|
name: repl.exe
|
|
path: "result/bin/deltachat-repl.exe"
|