Release App #52
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: Release App | |
on: | |
release: | |
types: [published] | |
workflow_dispatch: | |
inputs: | |
pypi: | |
description: 'Publish to PyPI' | |
required: true | |
default: false | |
type: boolean | |
tag_name: | |
required: true | |
type: string | |
jobs: | |
build: | |
uses: ./.github/workflows/build.yml | |
secrets: inherit | |
release-pypi: | |
name: Publish on PyPI | |
needs: build | |
runs-on: ubuntu-22.04 | |
if: ${{ github.event_name != 'workflow_dispatch' || inputs.pypi }} | |
environment: | |
name: pypi | |
url: https://pypi.org/p/drive-backup | |
permissions: | |
id-token: write | |
steps: | |
- name: Download PyPI artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: ${{ needs.build.outputs.pypi-artifact-name }} | |
path: dist | |
- name: Publish sdist and wheel on PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
release-github: | |
name: Upload assets to GitHub Release | |
needs: build | |
runs-on: ubuntu-22.04 | |
environment: | |
name: github-release | |
url: ${{ steps.upload-assets.outputs.url }} | |
steps: | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
path: dist | |
merge-multiple: true | |
- name: Upload release assets | |
id: upload-assets | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
dist/drive_backup-* | |
dist/Drive_Backup-* | |
tag_name: ${{ inputs.tag_name }} |