mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-23 12:43:12 +03:00
fix: path-filters
This commit is contained in:
parent
7ad43f5a6d
commit
3859c34ba4
2 changed files with 4 additions and 4 deletions
6
.github/workflows/docker.yml
vendored
6
.github/workflows/docker.yml
vendored
|
@ -34,7 +34,7 @@ jobs:
|
||||||
- 'collect-currency/**'
|
- 'collect-currency/**'
|
||||||
|
|
||||||
build-and-push-server:
|
build-and-push-server:
|
||||||
if: ${{ needs.check-paths.outputs.server == 'true' }}
|
if: steps.changes.outputs.server == 'true'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
@ -70,7 +70,7 @@ jobs:
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
|
|
||||||
build-and-push-chart:
|
build-and-push-chart:
|
||||||
if: ${{ needs.check-paths.outputs.chart == 'true' }}
|
if: steps.changes.outputs.chart == 'true'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
@ -106,7 +106,7 @@ jobs:
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
|
|
||||||
build-and-push-cr:
|
build-and-push-cr:
|
||||||
if: ${{ needs.check-paths.outputs.cr == 'true' }}
|
if: steps.changes.outputs.cr == 'true'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
2
.github/workflows/documentation.yml
vendored
2
.github/workflows/documentation.yml
vendored
|
@ -24,7 +24,7 @@ jobs:
|
||||||
- 'docs/**'
|
- 'docs/**'
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
if: ${{ needs.check-paths.outputs.docs == 'true' }}
|
if: steps.changes.outputs.docs == 'true'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
Loading…
Add table
Reference in a new issue