Add Forgejo actions files
All checks were successful
Cachix / build (push) Successful in 45s

This commit is contained in:
Charlotte Van Petegem 2024-11-11 00:36:58 +01:00
parent 55c0a8de44
commit 04fd676481
No known key found for this signature in database
GPG key ID: 019E764B7184435A
2 changed files with 63 additions and 0 deletions

View file

@ -0,0 +1,29 @@
name: Cachix
on:
push:
branches: [ main ]
env:
USER: root
jobs:
build:
runs-on: docker
steps:
- uses: actions/checkout@v4
- run: apt update && apt install -y sudo
- uses: https://github.com/cachix/install-nix-action@v30
with:
enable_kvm: false
github_access_token: '${{ secrets.ACCESS_TOKEN_GITHUB }}'
- name: Cachix
uses: https://github.com/cachix/cachix-action@v15
with:
name: chvp
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
skipPush: true
- run: nix build -L --no-link .#packages.x86_64-linux.default
- run: nix build -L --no-link .#devShells.x86_64-linux.default
- run: nix eval --json ".#packages.x86_64-linux.default.outPath" | sed 's/"\(.*\)"/\1/' | cachix push chvp
- run: nix eval --json ".#devShells.x86_64-linux.default.outPath" | sed 's/"\(.*\)"/\1/' | cachix push chvp

View file

@ -0,0 +1,34 @@
name: Update
on:
schedule:
- cron: '28 * * * *'
workflow_dispatch:
env:
USER: root
jobs:
update:
runs-on: docker
steps:
- uses: actions/checkout@v4
- run: apt update && apt install -y sudo
- uses: https://github.com/cachix/install-nix-action@v30
with:
enable_kvm: false
github_access_token: '${{ secrets.ACCESS_TOKEN_GITHUB }}'
- name: Cachix
uses: https://github.com/cachix/cachix-action@v15
with:
name: chvp
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
skipPush: true
- run: nix flake update
- run: nix build -L --no-link .#packages.x86_64-linux.default
- run: nix build -L --no-link .#devShells.x86_64-linux.default
- run: nix eval --json ".#packages.x86_64-linux.default.outPath" | sed 's/"\(.*\)"/\1/' | cachix push chvp
- run: nix eval --json ".#devShells.x86_64-linux.default.outPath" | sed 's/"\(.*\)"/\1/' | cachix push chvp
- uses: https://github.com/stefanzweifel/git-auto-commit-action@v5.0.1
with:
commit_message: "Update dependencies"