Skip to content

Commit 02b0a68

Browse files
fix: Updating release workflows to refer to yml instead of yaml (feast-dev#4935)
Signed-off-by: Francisco Javier Arceo <[email protected]>
1 parent 5a7e6f8 commit 02b0a68

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/build_wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020

2121
jobs:
2222
get-version:
23-
uses: ./.github/workflows/get_semantic_release_version.yaml
23+
uses: ./.github/workflows/get_semantic_release_version.yml
2424
with:
2525
custom_version: ${{ github.event.inputs.custom_version }}
2626
token: ${{ github.event.inputs.token }}

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ on:
1717

1818
jobs:
1919
get-version:
20-
uses: ./.github/workflows/get_semantic_release_version.yaml
20+
uses: ./.github/workflows/get_semantic_release_version.yml
2121
with:
2222
custom_version: ${{ github.event.inputs.custom_version }}
2323
token: ${{ github.event.inputs.token }}
2424

2525
publish-python-sdk:
26-
uses: ./.github/workflows/publish_python_sdk.yaml
26+
uses: ./.github/workflows/publish_python_sdk.yml
2727
with:
2828
custom_version: ${{ github.event.inputs.custom_version }}
2929
token: ${{ github.event.inputs.token }}
3030

3131
build-publish-docker-images:
32-
uses: ./.github/workflows/publish_images.yaml
32+
uses: ./.github/workflows/publish_images.yml
3333
needs: [ get-version, publish-python-sdk ]
3434
with:
3535
custom_version: ${{ github.event.inputs.custom_version }}

.github/workflows/publish_helm_charts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414

1515
jobs:
1616
get-version:
17-
uses: ./.github/workflows/get_semantic_release_version.yaml
17+
uses: ./.github/workflows/get_semantic_release_version.yml
1818
with:
1919
custom_version: ${{ github.event.inputs.custom_version }}
2020
token: ${{ github.event.inputs.token }}

.github/workflows/publish_images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414

1515
jobs:
1616
get-version:
17-
uses: ./.github/workflows/get_semantic_release_version.yaml
17+
uses: ./.github/workflows/get_semantic_release_version.yml
1818
with:
1919
custom_version: ${{ github.event.inputs.custom_version }}
2020
token: ${{ github.event.inputs.token }}

.github/workflows/publish_java_sdk.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414

1515
jobs:
1616
get-version:
17-
uses: ./.github/workflows/get_semantic_release_version.yaml
17+
uses: ./.github/workflows/get_semantic_release_version.yml
1818
with:
1919
custom_version: ${{ github.event.inputs.custom_version }}
2020
token: ${{ github.event.inputs.token }}
@@ -23,7 +23,7 @@ jobs:
2323
if: github.repository == 'feast-dev/feast'
2424
container: maven:3.6-jdk-11
2525
runs-on: ubuntu-latest
26-
needs: [ get-version, publish-python-sdk ]
26+
needs: [ get-version ]
2727
steps:
2828
- uses: actions/checkout@v4
2929
with:

.github/workflows/publish_python_sdk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414

1515
jobs:
1616
get-version:
17-
uses: ./.github/workflows/get_semantic_release_version.yaml
17+
uses: ./.github/workflows/get_semantic_release_version.yml
1818
with:
1919
custom_version: ${{ github.event.inputs.custom_version }}
2020
token: ${{ github.event.inputs.token }}

0 commit comments

Comments
 (0)