Skip to content

Update PR template to include Security Alert fix details #422

Update PR template to include Security Alert fix details

Update PR template to include Security Alert fix details #422

Workflow file for this run

---
name: TestPyPi
on:
pull_request:
branches: [dev]
jobs:
build-n-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Check out source-code repository
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install python dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install .
- name: Build the distribution
run: python setup.py sdist bdist_wheel
- name: Publish dist to TestPyPI
if: github.repository == 'ScilifelabDataCentre/dds_cli'
uses: pypa/gh-action-pypi-publish@release/v1
with:
print_hash: true
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
skip_existing: true