28 lines
610 B
YAML
28 lines
610 B
YAML
name: build configuration
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, edited, reopened]
|
|
branches:
|
|
- main
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build_and_cache_krz01:
|
|
runs-on: nix
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Build and cache the node
|
|
run: nix-shell --run cache-node
|
|
env:
|
|
STORE_ENDPOINT: "https://tvix-store.dgnum.eu/infra-signing/"
|
|
STORE_USER: "admin"
|
|
BUILD_NODE: "krz01"
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
if: always()
|
|
with:
|
|
name: outputs_krz01
|
|
path: paths.txt
|