Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix file filter #1901

Merged
merged 1 commit into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/lbox-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
description: 'Release Tag'
required: true
type: string
prev_sdk_tag:
description: 'Prev SDK Release Tag'
required: true
type: string

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand All @@ -29,8 +33,7 @@ jobs:
- uses: dorny/paths-filter@v3
id: filter
with:
ref: ${{ github.head_ref }}
base: ${{ inputs.tag }}
base: ${{ inputs.prev_sdk_tag }}
list-files: 'json'
filters: |
lbox:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
tag:
description: 'Release Tag'
required: true
prev_sdk_tag:
description: 'Prev SDK Release Tag, used to determine which lbox files have changed'
required: true
skip-tests:
description: 'Skip PROD Test (Do not do this unless there is an emergency)'
default: false
Expand All @@ -32,6 +35,7 @@ jobs:
uses: ./.github/workflows/lbox-publish.yml
with:
tag: ${{ inputs.tag }}
prev_sdk_tag: ${{ inputs.prev_sdk_tag }}
secrets: inherit
build:
needs: ['build-lbox']
Expand Down
Loading