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

update version to v1.2.0 #506

Merged
merged 1 commit into from
Dec 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading