Configure Renovate #17
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: test-release | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
workflow_dispatch: | |
inputs: | |
publish: | |
description: If desired, input the OS that will perform the real publish operation ('linux', 'windows', 'mac'). | |
required: false | |
default: 'Any other input will trigger dry runs.' | |
jobs: | |
publish-from-linux: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Publish to pypi | |
uses: ./ | |
with: | |
project-name: pypi-publish-with-poetry-dogfood | |
pypi-token: ${{ secrets.PYPI_TOKEN_DOGFOOD }} | |
pre-release: ${{ github.ref != 'refs/heads/main' }} | |
dry-run: ${{ github.event.inputs.publish != 'linux' }} | |
tag-prefix: dogfood-linux- | |
pyproject-folder: ./pypi-publish-with-poetry-dogfood | |
publish-from-windows: | |
runs-on: windows-2022 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Publish to pypi | |
uses: ./ | |
with: | |
project-name: pypi-publish-with-poetry-dogfood | |
pypi-token: ${{ secrets.PYPI_TOKEN_DOGFOOD }} | |
pre-release: ${{ github.ref != 'refs/heads/main' }} | |
dry-run: ${{ github.event.inputs.publish != 'windows' }} | |
tag-prefix: dogfood-windows- | |
pyproject-folder: ./pypi-publish-with-poetry-dogfood | |
publish-from-mac: | |
runs-on: macos-11 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Publish to pypi | |
uses: ./ | |
with: | |
project-name: pypi-publish-with-poetry-dogfood | |
pypi-token: ${{ secrets.PYPI_TOKEN_DOGFOOD }} | |
pre-release: ${{ github.ref != 'refs/heads/main' }} | |
dry-run: ${{ github.event.inputs.publish != 'mac' }} | |
tag-prefix: dogfood-mac- | |
pyproject-folder: ./pypi-publish-with-poetry-dogfood |