push to cachix? 🤷
This commit is contained in:
parent
f3374e0e31
commit
ed5eab69ef
2 changed files with 25 additions and 1 deletions
25
.github/workflows/cachix.yaml
vendored
Normal file
25
.github/workflows/cachix.yaml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
name: Cachix
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
publish:
|
||||||
|
name: Publish Flake
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout sources
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Install nix
|
||||||
|
uses: cachix/install-nix-action@V27
|
||||||
|
|
||||||
|
- name: Authenticate with Cachix
|
||||||
|
uses: cachix/cachix-action@v15
|
||||||
|
with:
|
||||||
|
name: varnam-nix
|
||||||
|
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
|
||||||
|
|
||||||
|
- name: Build nix flake
|
||||||
|
run: nix build -L .#libgovarnam .#fcitx5-varnam
|
|
@ -23,7 +23,6 @@ buildGoModule rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config libgovarnam ];
|
nativeBuildInputs = [ pkg-config libgovarnam ];
|
||||||
|
|
||||||
|
|
||||||
ldflags = [
|
ldflags = [
|
||||||
"-w"
|
"-w"
|
||||||
"-s"
|
"-s"
|
||||||
|
|
Loading…
Reference in a new issue