Joseph Manley
7f16f4e6d7
Fix versioning Fix artifact name Use artifact value as input fix output name Update workflows
24 lines
557 B
YAML
24 lines
557 B
YAML
name: Build
|
|
on: push
|
|
|
|
jobs:
|
|
build:
|
|
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: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
- name: Build
|
|
run: |
|
|
python setup.py sdist
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: jira-tracker.tar.gz
|
|
path: dist/jira-tracker-*.tar.gz |