-
Notifications
You must be signed in to change notification settings - Fork 30
40 lines (32 loc) · 998 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: tests
on:
pull_request:
push:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v3
- name: install nix
uses: cachix/install-nix-action@v20
- name: configure cache
uses: DeterminateSystems/magic-nix-cache-action@v1
- name: check flake
run: nix -Lv flake check
- name: get latest tag
id: latest
uses: actions-ecosystem/action-get-latest-tag@v1
- name: parse changelog
id: changelog
uses: coditory/changelog-parser@v1
- name: create release
id: release
uses: softprops/action-gh-release@v1
if: github.ref == 'refs/heads/main' && steps.changelog.outputs.version != steps.latest.outputs.tag
with:
files: ${{ steps.package.outputs.path }}
body: ${{ steps.changelog.outputs.description }}
tag_name: ${{ steps.changelog.outputs.version }}