Merge pull request #336 from minvws/health-sys #46
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Package python virtual env | |
| on: | |
| push: | |
| tags: | |
| - v* | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| python_version: ['3.11', '3.14'] | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v7 | |
| - 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/action-python-venv-package@v1 | |
| with: | |
| python_version: ${{ matrix.python_version }} | |
| package_file_name: ${{ env.PKG_NAME }} |