From efe18bdbb02ee7b26455a574e5b7bc49f367d7ca Mon Sep 17 00:00:00 2001 From: Joseph Manley Date: Sat, 5 Feb 2022 21:15:49 -0500 Subject: [PATCH] Improve CI/CD --- .github/workflows/release.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index cdaac32..9d5918e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -20,6 +20,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip + pip install wheel pip install -r requirements.txt - name: build run: | @@ -40,16 +41,17 @@ jobs: - 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 + 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 wheel 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" + echo "::set-output name=artifact::dist/multistream-${GITHUB_REF:10}.tar.gz" - name: Upload to release uses: JasonEtco/upload-to-release@v0.1.1 with: