Skip to content

Commit 94b3f4d

Browse files
authored
Fixed install_poetry action (#16)
* Fixed install_poetry action * Fix README.md
1 parent 000c3e7 commit 94b3f4d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
fetch-depth: 0
3737
- name: Create Release
38-
uses: SneaksAndData/github-actions/semver_release@v0.0.5
38+
uses: SneaksAndData/github-actions/semver_release@v0.0.6
3939
with:
4040
major_v: 0
4141
minor_v: 0
@@ -86,7 +86,7 @@ jobs:
8686
with:
8787
fetch-depth: 0
8888
- name: Install Poetry and dependencies
89-
uses: SneaksAndData/github-actions/install_poetry@v0.0.5
89+
uses: SneaksAndData/github-actions/install_poetry@v0.0.6
9090
with:
9191
pypi_repo_url: ${{ secrets.AZOPS_PYPI_REPO_URL }}
9292
pypi_token_username: ${{ secrets.AZOPS_PAT_USER }}
@@ -131,7 +131,7 @@ jobs:
131131
with:
132132
fetch-depth: 0
133133
- name: Build and Push Chart (DEV)
134-
uses: SneaksAndData/github-actions/build_helm_chart@v0.0.5
134+
uses: SneaksAndData/github-actions/build_helm_chart@v0.0.6
135135
with:
136136
application: beast
137137
container_registry_user: ${{secrets.AZCR_DEV_USER}}
@@ -178,13 +178,13 @@ jobs:
178178
- uses: actions/checkout@v2
179179
- run: git fetch --prune --unshallow
180180
- name: Install Poetry and dependencies
181-
uses: SneaksAndData/github-actions/install_poetry@v0.0.5
181+
uses: SneaksAndData/github-actions/install_poetry@v0.0.6
182182
with:
183183
pypi_repo_url: ${{ secrets.AZOPS_PYPI_REPO_URL }}
184184
pypi_token_username: ${{ secrets.AZOPS_PAT_USER }}
185185
pypi_token: ${{ secrets.AZOPS_PAT }}
186186
- name: Create package
187-
uses: SneaksAndData/github-actions/create_package@v0.0.5
187+
uses: SneaksAndData/github-actions/create_package@v0.0.6
188188
with:
189189
pypi_repo_url: ${{ secrets.AZOPS_PYPI_UPLOAD }}
190190
pypi_token_username: ${{ secrets.AZOPS_PAT_USER }}

install_poetry/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ inputs:
1414
description: Package index authentication username.
1515
required: true
1616

17-
pypi_token: Package index authentication token or password.
18-
description: T
17+
pypi_token:
18+
description: Package index authentication token or password.
1919
required: true
2020

2121
export_requirements:

0 commit comments

Comments
 (0)