33 lines
651 B
YAML
33 lines
651 B
YAML
name: unstable
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
tags:
|
|
- '*'
|
|
- '![0-9]+.[0-9]+.[0-9]+'
|
|
|
|
jobs:
|
|
build:
|
|
name: unstable
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Use python 3.x
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.x'
|
|
|
|
- name: install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install pybuilder ddadevops deprecation setuptools
|
|
|
|
- name: build unstable release
|
|
env:
|
|
TWINE_USERNAME: dda
|
|
TWINE_PASSWORD: ${{ secrets.PYPI_DDA }}
|
|
run: |
|
|
pyb publish upload
|