Skip to content

Commit

Permalink
initial release 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Alw3ys committed Nov 1, 2023
1 parent de2390b commit 6a5f5ea
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
33 changes: 33 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Publish Package to Python Package Index

on:
push:
paths-ignore:
- .github/**
branches:
- main

jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
- name: 🔨 Checkout
uses: actions/checkout@v3

- name: 🔨 Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: 🔨 Setup Dependencies
run: |
python -m pip install poetry
poetry install
poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
- name: 📦 Build
run: poetry build

- name: 🎉 Publish
run: poetry publish
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "deployplex"
version = "0.0.0"
version = "0.0.1"
description = "DeployPlex Python SDK"
authors = ["Alvaro Molina <[email protected]>"]
license = "Apache-2.0"
Expand Down

0 comments on commit 6a5f5ea

Please sign in to comment.