Skip to content

Commit 206184e

Browse files
authored
Fix Release action errors (#34)
* GitHub action for release * Fix validation errors * Fix release.yml errors
1 parent 835edaf commit 206184e

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,7 @@ on:
1616

1717
jobs:
1818
build:
19-
matrix:
20-
python-version: ["3.11.x"]
21-
poetry-version: ["1.5.0"]
22-
os: [ubuntu-latest]
23-
runs-on: ${{ matrix.os }}
19+
runs-on: ubuntu-latest
2420

2521
steps:
2622
- name: Get Docker Images
@@ -38,7 +34,7 @@ jobs:
3834
- uses: actions/checkout@v3
3935
- uses: actions/setup-python@v4
4036
with:
41-
python-version: ${{ matrix.python-version }}
37+
python-version: "3.11.x"
4238

4339
- name: Cache Maven packages
4440
uses: actions/cache@v3
@@ -50,7 +46,7 @@ jobs:
5046
- name: Install Poetry
5147
shell: bash
5248
run: |
53-
pip install poetry==${{ matrix.poetry-version }}
49+
pip install poetry=="1.5.0"
5450
5551
- name: Install Dependencies
5652
run: python -m poetry install

0 commit comments

Comments
 (0)