mirror of
https://git.madhouse-project.org/algernon/iocaine.git
synced 2025-03-10 17:28:49 +01:00
29 lines
551 B
YAML
29 lines
551 B
YAML
## SPDX-FileCopyrightText: 2025 Gergely Nagy
|
|
## SPDX-FileContributor: Gergely Nagy
|
|
##
|
|
## SPDX-License-Identifier: MIT
|
|
|
|
name: build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: nixos-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: setup magic attic cache
|
|
uses: actions/magic-attic-cache@main
|
|
with:
|
|
ATTIC_TOKEN: ${{ secrets.ATTIC_TOKEN }}
|
|
|
|
- name: build
|
|
uses: actions/nix/build@main
|
|
with:
|
|
logs: true
|
|
package: iocaine
|