Compare commits

...

2 commits

Author SHA1 Message Date
f195a358ca
fix step 2025-08-07 20:39:19 +02:00
732758b58b
temp test ci 2025-08-07 20:37:49 +02:00
3 changed files with 13 additions and 7 deletions

View file

@ -22,4 +22,4 @@ jobs:
chmod 600 ~/.ssh/id_ed25519 chmod 600 ~/.ssh/id_ed25519
- name: Cache - name: Cache
- run: attic push demo $(nix-build) run: attic push demo $(nix-build)

View file

@ -21,6 +21,18 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- run: nix-shell --run 'nix-unit ./deployment/data-model-test.nix' - run: nix-shell --run 'nix-unit ./deployment/data-model-test.nix'
- run: attic login fediversity https://attic.fediversity.net ${{ secrets.ATTIC_PUSH_KEY }} && attic use demo
- name: Set up SSH key to access age secrets
run: |
env
mkdir -p ~/.ssh
echo "${{ secrets.CD_SSH_KEY }}" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
- name: Cache
run: attic push demo $(nix-build)
check-mastodon: check-mastodon:
runs-on: native runs-on: native
steps: steps:

View file

@ -19,10 +19,4 @@
gateway = "2a00:51c0:13:1305::1"; gateway = "2a00:51c0:13:1305::1";
}; };
}; };
nixos.module = {
imports = [
../../../services/fediversity/attic
];
};
} }