Skip to content

Commit

Permalink
[GHA] Use dynamic OV refs (#261)
Browse files Browse the repository at this point in the history
To avoid manual update on release branch creation
  • Loading branch information
akladiev authored Sep 26, 2024
1 parent 81c067c commit 5ba4eca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:

env:
PYTHON_VERSION: '3.11'
OV_BRANCH: 'master'
OV_BRANCH: ${{ github.base_ref || github.event.merge_group.base_ref || github.ref }}
OV_TARBALL: ''

permissions: read-all
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:
env:
PYTHON_VERSION: '3.11'
MACOSX_DEPLOYMENT_TARGET: '11.0'
OV_BRANCH: 'master'
OV_BRANCH: ${{ github.base_ref || github.event.merge_group.base_ref || github.ref }}
OV_TARBALL: ''

permissions: read-all
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:

env:
PYTHON_VERSION: '3.11'
OV_BRANCH: 'master'
OV_BRANCH: ${{ github.base_ref || github.event.merge_group.base_ref || github.ref }}
OV_TARBALL: ''

permissions: read-all
Expand Down

0 comments on commit 5ba4eca

Please sign in to comment.