Skip to content
This repository has been archived by the owner on Jul 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #506 from xuechendi/v1.2.0
Browse files Browse the repository at this point in the history
update version to v1.2.0
  • Loading branch information
xuechendi authored Dec 22, 2023
2 parents 5398747 + d945ad0 commit c416bec
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 3 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/e2eaiok_recdp_release_pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Publish RecDP Stable Release to PyPI

on:
workflow_dispatch:
push:
branches:
- main

permissions:
contents: read
packages: write

jobs:
e2eaiok-release-python-pypi:
runs-on: self-hosted
if: ${{ github.repository_owner == 'intel' }}
steps:
- uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.7'

- name: Build Package
run: |
pip install build wheel
release_version=$(cat e2eAIOK/version | head -1)
cd RecDP
echo $release_version > version
python3 setup.py sdist
- name: Upload Package
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN_PYRECDP }}
packages_dir: RecDP/dist
2 changes: 1 addition & 1 deletion RecDP/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.1
1.2.0
2 changes: 1 addition & 1 deletion e2eAIOK/deltatuner/deltatuner/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.9
1.2.0
2 changes: 1 addition & 1 deletion e2eAIOK/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
1.2.0

0 comments on commit c416bec

Please sign in to comment.