Skip to content

Workflow file for this run

name: Build python virtual env
on:
push:
tags:
- v*
jobs:
build:
strategy:
matrix:
python_version: ['3.11']
runs-on: ubuntu-22.04
steps:
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV &&
echo "PKG_NAME=`basename $GITHUB_REPOSITORY -private`" >> $GITHUB_ENV
- name: Build venv package
uses: minvws/nl-irealisatie-generic-pipelines/.github/actions/python-venv-package@main
with:
python_version: ${{ matrix.python_version }}
package_file_name: ${{ env.PKG_NAME }}