This commit is contained in:
parent
b7f8234960
commit
6278f52ace
2 changed files with 15 additions and 22 deletions
15
.forgejo/workflows/build.yaml
Normal file
15
.forgejo/workflows/build.yaml
Normal file
|
@ -0,0 +1,15 @@
|
|||
name: Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest-amd64
|
||||
|
||||
uses: daniel/reusable-workflows/.github/workflows/nix-flake-build.yaml@main
|
||||
with:
|
||||
runner: ubuntu-latest-amd64
|
||||
secrets: inherit
|
|
@ -1,22 +0,0 @@
|
|||
name: CI
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
check:
|
||||
runs-on: ubuntu-latest-amd64
|
||||
|
||||
uses: daniel/reusable-workflows/.github/workflows/nix-flake-check.yaml@main
|
||||
with:
|
||||
runner: ubuntu-latest-amd64
|
||||
secrets: inherit
|
||||
|
||||
build:
|
||||
runs-on: ubuntu-latest-amd64
|
||||
|
||||
needs: check
|
||||
|
||||
uses: daniel/reusable-workflows/.github/workflows/nix-flake-build.yaml@main
|
||||
with:
|
||||
runner: ubuntu-latest-amd64
|
||||
secrets: inherit
|
Reference in a new issue