Skip to content

Commit

Permalink
update release build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dhuangnm authored and dhuangnm committed Jun 17, 2024
1 parent 6ae1b94 commit af38171
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 19 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/build-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Build release wheel

on:
push:
branches:
- 'release/*'

workflow_dispatch:
inputs:
gitref:
description: "git tag, commit or branch name for the release"
type: string
required: true

jobs:
build-release-wheel:
runs-on: ubuntu-20.04
steps:
- uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ inputs.gitref }}

- name: Build PyPi Wheel
id: build
uses: neuralmagic/nm-actions/actions/pypi_build@main
with:
dev: false
release: true

- name: Set Env
run: |
pip3 install --upgrade pip && pip3 install --upgrade setuptools
pip3 install virtualenv
virtualenv venv
source venv/bin/activate
- name: upload whl
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: "wheel-compressed-tensors"
path: ${{ steps.build.outputs.whlname }}
retention-days: 7

- name: upload tar.gz
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: "tar-compressed-tensors"
path: ${{ steps.build.outputs.tarname }}
retention-days: 7

- name: Install whl
run: |
pip3 install ${{ steps.build.outputs.whlname }}
19 changes: 0 additions & 19 deletions .github/workflows/build-release.yml

This file was deleted.

0 comments on commit af38171

Please sign in to comment.