Skip to content

Commit

Permalink
implement review comments
Browse files Browse the repository at this point in the history
* no more environments until its clean what they do
* version pin changes to actions
  • Loading branch information
RonnyPfannschmidt committed May 12, 2023
1 parent 0ac84c6 commit 48e1b77
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
environment: deploy
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -30,17 +29,16 @@ jobs:
needs: [build]
runs-on: ubuntu-latest
timeout-minutes: 30
environment: deploy
permissions:
id-token: write # for pypi oidc publish
id-token: write
steps:
- name: Download Package
uses: actions/download-artifact@v3
with:
name: Packages
path: dist
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
uses: pypa/gh-action-pypi-publish@v1.8.5

release-notes:

Expand All @@ -50,7 +48,6 @@ jobs:
needs: [deploy]
runs-on: ubuntu-latest
timeout-minutes: 30
environment: deploy
permissions:
contents: write
steps:
Expand Down

0 comments on commit 48e1b77

Please sign in to comment.