Skip to content

Commit

Permalink
Test Publishing - erneute Korrekturen Workflows
Browse files Browse the repository at this point in the history
Signed-off-by: dornech <[email protected]>
  • Loading branch information
dornech committed Nov 24, 2024
1 parent 05d6ee1 commit 7f28db5
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ jobs:
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Dump context "Event"
env:
EVENT: ${{ toJson(event) }}
run: echo "$EVENT"

build-test:
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -71,7 +75,7 @@ jobs:
needs: build-distribution
environment:
name: pypi-test
url: https://pypi.org/project/p{{ github.event.repository.name }}
url: https://testpypi.org/project/p{{ github.event.repository.name }}
permissions:
id-token: write
# if: startsWith(github.ref, 'refs/tags/')
Expand All @@ -87,6 +91,7 @@ jobs:
with:
packages-dir: dist/
repository-url: https://test.pypi.org/legacy/
verbose: true
# skip-existing: true
# user: __token__
# password: ${{ secrets.TEST_PYPI_SECRECT }}
Expand All @@ -112,6 +117,6 @@ jobs:
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: dist/

verbose: true
# user: __token__
# password: ${{ secrets.PYPI_SECRECT }}
4 changes: 4 additions & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ jobs:
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Dump context "Event"
env:
EVENT: ${{ toJson(event) }}
run: echo "$EVENT"

build-documentation:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ jobs:
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Dump context "Event"
env:
EVENT: ${{ toJson(event) }}
run: echo "$EVENT"

update-draft:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Dump context "Event"
env:
EVENT: ${{ toJson(event) }}
run: echo "$EVENT"

labeler:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Dump context "Event"
env:
EVENT: ${{ toJson(event) }}
run: echo "$EVENT"

tests:
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 7f28db5

Please sign in to comment.