Skip to content

Commit

Permalink
Fix missing credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
filipre committed Mar 13, 2022
1 parent fd81d8a commit 43b7fe0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
uses: filipre/signalbot/.github/workflows/run-tests.yaml@master

publish-test-pypi:
name: Publish on test.pypi.org
name: Publish (test.pypi.org)
runs-on: ubuntu-latest
needs: run-tests
environment:
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
run: poetry publish -r testpypi

publish-pypi:
name: Publish Package
name: Publish (pypi.org)
runs-on: ubuntu-latest
needs: publish-test-pypi
environment:
Expand All @@ -66,5 +66,8 @@ jobs:
run: echo "::set-output name=package_version::$(poetry version -s)"
- name: Build package
run: poetry build
- name: Add pypi.org to Poetry
run: |
poetry config pypi-token.pypi ${{ secrets.API_TOKEN }}
- name: Publish package
run: poetry publish
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ maintainers = ["René Filip"]
name = "signalbot"
readme = "README.md"
repository = "https://github.com/filipre/signalbot"
version = "0.5.4"
version = "0.5.5"

[tool.poetry.dependencies]
APScheduler = "^3.9.1"
Expand Down

0 comments on commit 43b7fe0

Please sign in to comment.