Initial commit

This commit is contained in:
2022-02-05 21:04:18 -05:00
commit 60b64118b7
15 changed files with 1369 additions and 0 deletions

58
.github/workflows/release.yaml vendored Normal file
View File

@ -0,0 +1,58 @@
name: Publish Release
on:
release:
types:
- created
jobs:
pypi:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Update Version
run: |
echo "Setting version to: ${GITHUB_REF:10}"
sed -i "s/[0-9.]*\.[0-9.]*\.[0-9.]*/${GITHUB_REF:10}/g" multistream/__init__.py
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: build
run: |
python setup.py sdist bdist_wheel
- name: PyPi Publish
uses: pypa/gh-action-pypi-publish@v1.0.0a0
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Update Version
run: |
echo "Setting version to: ${GITHUB_REF:10}"
sed -i "s/[0-9.]*\.[0-9.]*\.[0-9.]*/${GITHUB_REF:10}/g" jira_tracker/__init__.py
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build
id: build
run: |
python setup.py sdist
echo "::set-output name=artifact::dist/jira-tracker-${GITHUB_REF:10}.tar.gz"
- name: Upload to release
uses: JasonEtco/upload-to-release@v0.1.1
with:
args: ${{ steps.build.outputs.artifact }} application/tar+gzip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}