Advertise support for qBittorrent v4.6.0 #5
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: Create Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
ci: | |
name: CI | |
uses: ./.github/workflows/ci.yml | |
release: | |
name: Create Release | |
needs: ci | |
if: needs.ci.result == 'success' | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
id-token: write # required for trusted publishing | |
steps: | |
- name: Set Build Variables | |
id: build-vars | |
run: echo "version=${GITHUB_REF_NAME#v}" >> ${GITHUB_OUTPUT} | |
- name: Set up Python | |
uses: actions/setup-python@v4.7.1 | |
with: | |
python-version: "3.x" | |
- name: Get packages | |
uses: actions/download-artifact@v3.0.2 | |
with: | |
name: "package" | |
path: dist | |
- name: Create release | |
uses: ncipollo/release-action@v1.13.0 | |
with: | |
name: release-${{ steps.build-vars.outputs.version }} | |
draft: true | |
artifacts: dist/* | |
artifactErrorsFailBuild: true | |
- name: Publish release to Test PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
repository-url: https://test.pypi.org/legacy/ |