project: Introduces open62541 as a new project to analyze (#893) #59
Workflow file for this run
This file contains 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: Python Release Tag Pipeline | |
on: | |
push: | |
tags: | |
- 'vara-\d*\.\d*\.\d*' | |
env: | |
BB_TMP_DIR: $(pwd)/benchbuild/tmp | |
TEST_PYPI_TOKEN: ${{ secrets.ALL_TEST_PYPI_TOKEN }} | |
PYPI_TOKEN: ${{ secrets.ALL_PYPI_TOKEN }} | |
jobs: | |
PublishRelease: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.11' | |
- uses: ./.github/actions/dependenciesActions | |
- name: Create and Publish Release | |
run: | | |
sed -i 's/$PYPI_TOKEN/'$PYPI_TOKEN'/' .pypirc | |
sed -i 's/$TEST_PYPI_TOKEN/'$TEST_PYPI_TOKEN'/' .pypirc | |
cp .pypirc $HOME # to ensure tox uses the correct pypi config | |
tox -e release |