bump to 0.2.1 (#361)

This commit is contained in:
Pierre Penninckx 2024-11-22 23:15:13 +01:00 committed by GitHub
parent df28d39e44
commit 03fdaaa7fa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 25 additions and 3 deletions

View file

@ -17,7 +17,29 @@ on:
branches: [ "main" ]
jobs:
path-filter:
runs-on: ubuntu-latest
outputs:
changed: ${{ steps.filter.outputs.changed }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
changed:
- 'lib/**'
- 'modules/**'
- '!modules/**/docs/**'
- 'test/**'
- '.github/workflows/build.yaml'
build-matrix:
needs: [ "path-filter" ]
if: needs.path-filter.outputs.changed == 'true'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
@ -91,10 +113,10 @@ jobs:
nix build --print-build-logs --show-trace .#checks.x86_64-linux.${{ matrix.check }}
results:
if: ${{ always() }}
runs-on: ubuntu-latest
name: Final Results
runs-on: ubuntu-latest
needs: [ manual, tests ]
if: '!cancelled()'
steps:
- run: |
result="${{ needs.tests.result }}"

View file

@ -1 +1 @@
0.2.0
0.2.1