Skip to content

Commit 3af1002

Browse files
authored
Changed py to python in workflow (#941)
Signed-off-by: Paul Schultz <[email protected]>
1 parent 0732236 commit 3af1002

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,8 @@ jobs:
9898
run: echo ::set-output name=version::$(cat api-repo/schemas/latest/jsonSchemaVersion.txt)
9999

100100
- name: Publish the new version on devfile-web
101-
uses: actions/setup-python@v4
102-
with:
103-
python-version: '3.9'
104101
run: |
105-
py devfile-web-repo/python/src/api_workflow/api_workflow.py --version ${{ steps.get_version.outputs.version }} --devfile-schema api-repo/schemas/latest/devfile.json --release
102+
python devfile-web-repo/python/src/api_workflow/api_workflow.py --version ${{ steps.get_version.outputs.version }} --devfile-schema api-repo/schemas/latest/devfile.json --release
106103
107104
- name: Push to the devfile/devfile-web repo
108105
working-directory: devfile-web-repo/

.github/workflows/release-schema.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,8 @@ jobs:
3131
run: echo ::set-output name=version::$(cat api-repo/schemas/latest/jsonSchemaVersion.txt)
3232

3333
- name: Release new version on devfile-web
34-
uses: actions/setup-python@v4
35-
with:
36-
python-version: '3.9'
3734
run: |
38-
py devfile-web-repo/python/src/api_workflow/api_workflow.py --version ${{ steps.get_version.outputs.version }} --devfile-schema api-repo/schemas/latest/devfile.json --release
35+
python devfile-web-repo/python/src/api_workflow/api_workflow.py --version ${{ steps.get_version.outputs.version }} --devfile-schema api-repo/schemas/latest/devfile.json --release
3936
4037
- name: Push to the devfile/devfile-web repo
4138
working-directory: devfile-web-repo/

0 commit comments

Comments
 (0)