Skip to content

Commit

Permalink
Fix file filter
Browse files Browse the repository at this point in the history
  • Loading branch information
vbrodsky committed Nov 12, 2024
1 parent feaf687 commit 7d35fe5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
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

0 comments on commit 7d35fe5

Please sign in to comment.