Skip to content

Commit 09b629c

Browse files
committed
Separate test and release workflows
1 parent 05b261f commit 09b629c

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

.github/workflows/release.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: "Release"
2+
on:
3+
push:
4+
jobs:
5+
tests:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/[email protected]
9+
with:
10+
submodules: recursive
11+
- uses: cachix/install-nix-action@v12
12+
- uses: cachix/cachix-action@v8
13+
with:
14+
name: runtimeverification
15+
signingKey: '${{ secrets.RUNTIMEVERIFICATION_CACHIX_SIGNING_KEY }}'
16+
- run: nix-build -A kore -A project.kore.checks

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
- uses: cachix/install-nix-action@v12
1313
- uses: cachix/cachix-action@v8
1414
with:
15-
name: runtimeverification
16-
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
15+
name: kore
16+
signingKey: '${{ secrets.KORE_CACHIX_SIGNING_KEY }}'
1717
- run: nix-build --arg checkMaterialization true -A kore -A project.kore.checks
1818
- run: nix-shell --run "echo OK"
1919

0 commit comments

Comments
 (0)