Files
nix-config/.gitea/workflows/default.yaml
Workflow config file is invalid. Please check your config file: yaml: line 8: did not find expected '-' indicator

21 lines
510 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: create iso image
uses: https://github.com/cachix/install-nix-action@v31
run: make iso
- name: create release
uses: https://gitea.com/actions/release-action@main
with:
files: |-
nixos.iso
api_key: '${{secrets.RELEASE_TOKEN}}'