Some checks failed
Build iso when a new version is pushed / test (push) Failing after 16s
27 lines
611 B
YAML
27 lines
611 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: install go
|
|
uses: https://github.com/actions/setup-go@v4
|
|
|
|
#- name: build iso
|
|
# run: make iso
|
|
|
|
- name: create release
|
|
uses: https://gitea.com/actions/release-action@main
|
|
with:
|
|
files: |-
|
|
flake.nix
|
|
api_key: '${{secrets.RELEASE_TOKEN}}'
|