Compare commits

..

3 commits

Author SHA1 Message Date
ca8c5e422b
draft types 2025-06-20 10:45:44 +02:00
766faecf7c
WIP: sketch domain data model 2025-06-20 09:30:57 +02:00
71b5201527
add data model entity: application 2025-06-20 09:30:57 +02:00
2 changed files with 7 additions and 8 deletions

View file

@ -7,16 +7,15 @@ on:
jobs: jobs:
lockfile: lockfile:
runs-on: native runs-on: ubuntu-latest
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v31
- name: Install npins - name: Install npins
run: nix-shell --run "npins update" run: nix profile install 'nixpkgs#npins'
- name: Create PR - name: Update npins sources
uses: peter-evans/create-pull-request@v7 uses: getchoo/update-npins@v0
with: with:
token: "${{ secrets.DEPLOY_KEY }}" token: "${{ secrets.DEPLOY_KEY }}"
branch: npins-update
commit-message: "npins: update sources"
title: "npins: update sources"

View file

@ -27,7 +27,7 @@ in
pkgs.openssh pkgs.openssh
]; ];
env = { env = {
DEPLOYMENT_FLAKE = toString ../.; DEPLOYMENT_FLAKE = ../.;
DEPLOYMENT_NAME = "test"; DEPLOYMENT_NAME = "test";
NPINS_DIRECTORY = toString ../npins; NPINS_DIRECTORY = toString ../npins;
CREDENTIALS_DIRECTORY = toString ./.credentials; CREDENTIALS_DIRECTORY = toString ./.credentials;