bump to 0.2.1 (#361)
This commit is contained in:
parent
df28d39e44
commit
ec80a93e05
2 changed files with 25 additions and 3 deletions
26
.github/workflows/build.yaml
vendored
26
.github/workflows/build.yaml
vendored
|
|
@ -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 }}"
|
||||
|
|
|
|||
2
VERSION
2
VERSION
|
|
@ -1 +1 @@
|
|||
0.2.0
|
||||
0.2.1
|
||||
Loading…
Reference in a new issue