Skip to content

RunAI Model Streamer Library - Resease #1

RunAI Model Streamer Library - Resease

RunAI Model Streamer Library - Resease #1

Workflow file for this run

name: RunAI Model Streamer Library - Resease
on:
release:
types:
- created
jobs:
build-and-push:
name: Build & Push
runs-on: ubuntu-latest-4-cores
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set PACKAGE_VERSION
run: echo "PACKAGE_VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
- name: Build package
uses: devcontainers/[email protected]
with:
push: always
runCmd: |
PACKAGE_VERSION=${{ env.PACKAGE_VERSION }} make -C streaming build
- name: Upload As Release Asset
uses: softprops/action-gh-release@v1
with:
files: streaming/py/*/dist/*.whl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}