Skip to content

feat: testing version env var #14

feat: testing version env var

feat: testing version env var #14

Workflow file for this run

name: Release Workflow
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: 'Determine VERSION from tag'
id: 'version'
run: |
echo "value=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
- name: 'Print version tag from version output'
run: |
echo "version=${{ steps.version.outputs.value }}"
# - name: Set up Python
# uses: actions/setup-python@v2
# with:
# python-version: 3.7
# - name: Install necessary packages for make
# run: sudo apt-get update && sudo apt-get install -y build-essential
# - name: Install Pipenv and build packages
# run: |
# python -m pip install --upgrade pip
# pip install pipenv build
# - name: Install project dependencies
# run: pipenv install --dev
# - name: Set up PyPI Token
# run: echo "pypi_token=${{ secrets.PYPI_TOKEN }}" >> $GITHUB_ENV
# - name: Run make publish
# env:
# TWINE_USERNAME: __token__
# TWINE_PASSWORD: ${{ env.pypi_token }}
# run: make publish