Files
nix-config/.gitea/workflows/default.yaml
tomoron e5c52b4bc5
Some checks failed
Build iso when a new version is pushed / test (push) Failing after 2m17s
remove discord from iso build
2025-04-15 15:54:01 +02:00

24 lines
530 B
YAML

name: Build iso when a new version is pushed
run-name: iso building
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: get repo
uses: actions/checkout@v4.2.2
- name: install nix
uses: https://github.com/cachix/install-nix-action@v31
- name: build iso
run: make iso
- name: create release
uses: https://gitea.com/actions/release-action@main
with:
files: |-
nixos.iso
api_key: '${{secrets.RELEASE_TOKEN}}'