-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
68d2a58
commit 2a1a558
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,9 @@ jobs: | |
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: pypi | ||
url: https://pypi.org/p/err-aprs-backend | ||
permissions: | ||
id-token: write | ||
steps: | ||
|
@@ -19,16 +22,13 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
python-version: "3.11" | ||
|
||
- name: Install pip and poetry | ||
run: | | ||
pip install --upgrade --constraint .github/workflows/constraints.txt pip poetry | ||
pip --version | ||
poetry --version | ||
- name: Build package | ||
run: | | ||
poetry build | ||
- name: Publish package on PyPI | ||
uses: pypa/[email protected] | ||
- name: Publish package distributions to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 |