From ec80a93e059784a81f6f5f6a711b874e14122e88 Mon Sep 17 00:00:00 2001 From: Pierre Penninckx Date: Fri, 22 Nov 2024 23:15:13 +0100 Subject: [PATCH] bump to 0.2.1 (#361) --- .github/workflows/build.yaml | 26 ++++++++++++++++++++++++-- VERSION | 2 +- 2 files changed, 25 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 20c3bb0..527cf83 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -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 }}" diff --git a/VERSION b/VERSION index 341cf11..7dff5b8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.2.0 \ No newline at end of file +0.2.1 \ No newline at end of file