-
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
15b1bda
commit 3d468c6
Showing
2 changed files
with
48 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Build and Publish Package | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.10 | ||
- name: Install Poetry | ||
uses: snok/install-poetry@v1 | ||
with: | ||
virtualenvs-create: true | ||
virtualenvs-in-project: true | ||
installer-parallel: true | ||
- name: Build package | ||
run: | | ||
poetry --version | ||
poetry build | ||
- name: Publish package | ||
run: | | ||
poetry publish -u "__token__" -p ${{ secrets.PYPI_API_TOKEN }} | ||
- name: Get Package Version | ||
id: get_version | ||
shell: bash | ||
run: | | ||
echo "::set-output name=name::$(poetry version)" | ||
echo "::set-output name=version::$(poetry version | cut -d " " -f 2)" | ||
- name: Release With Assets | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
name: ${{ steps.get_version.outputs.name }} | ||
tag_name: ${{ steps.get_version.outputs.version }} | ||
files: ./dist/*.whl |
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 |
---|---|---|
@@ -1,13 +1,16 @@ | ||
[tool.poetry] | ||
name = "storagecli" | ||
version = "0.1.0" | ||
description = "" | ||
description = "CLI for Storage at app.merklebot.com" | ||
authors = ["Arseniy Popov <[email protected]>"] | ||
readme = "README.md" | ||
packages = [ | ||
{ include = "StorageCLI" }, | ||
] | ||
|
||
homepage="https://github.com/merklebot/StorageCLI" | ||
repository="https://github.com/merklebot/StorageCLI" | ||
|
||
[tool.poetry.scripts] | ||
storagecli = 'StorageCLI.storage_io:cli' | ||
|
||
|