Skip to content

Commit

Permalink
Uncomment some sections
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Dec 19, 2024
1 parent 2a665bb commit 70bdde3
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,30 +50,30 @@ jobs:
with:
python-version: '3.10'

# - name: Install dependencies
# run: python -m pip install --upgrade pip setuptools wheel
- name: Install dependencies
run: python -m pip install --upgrade pip setuptools wheel

# - name: Build package
# run: python setup.py sdist bdist_wheel
#
# - name: Publish package
# uses: pypa/gh-action-pypi-publish@release/v1
# with:
# user: ${{ secrets.PYPI_USERNAME }}
# password: ${{ secrets.PYPI_PASSWORD }}
- name: Build package
run: python setup.py sdist bdist_wheel

- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: ${{ secrets.PYPI_USERNAME }}
password: ${{ secrets.PYPI_PASSWORD }}

- name: Setup git credentials
uses: oleksiyrudenko/gha-git-credentials@v2-latest
with:
name: 'reportportal.io'
email: '[email protected]'
token: ${{ secrets.GITHUB_TOKEN }}
#
# - name: Tagging new version
# id: newVersionTag
# run: |
# git tag -a ${{ env.RELEASE_VERSION }} -m "Release ${{ env.RELEASE_VERSION }}"
# git push --tags

- name: Tagging new version
id: newVersionTag
run: |
git tag -a ${{ env.RELEASE_VERSION }} -m "Release ${{ env.RELEASE_VERSION }}"
git push --tags
- name: Checkout develop branch
uses: actions/checkout@v4
Expand Down Expand Up @@ -108,13 +108,13 @@ jobs:
version: ${{ env.RELEASE_VERSION }}
path: ./${{ env.CHANGE_LOG_FILE }}

# - name: Create Release
# id: createRelease
# uses: ncipollo/release-action@v1
# with:
# tag: ${{ env.RELEASE_VERSION }}
# name: Release ${{ env.RELEASE_VERSION }}
# body: ${{ steps.readChangelogEntry.outputs.changes }}
- name: Create Release
id: createRelease
uses: ncipollo/release-action@v1
with:
tag: ${{ env.RELEASE_VERSION }}
name: Release ${{ env.RELEASE_VERSION }}
body: ${{ steps.readChangelogEntry.outputs.changes }}

- name: Update version file
id: versionFileUpdate
Expand Down

0 comments on commit 70bdde3

Please sign in to comment.