Skip to content

Release/v2.1.0

Release/v2.1.0 #24

Workflow file for this run

name: Publish Release
on:
workflow_dispatch:
pull_request:
types: [closed]
branches: [main]
jobs:
publish:
if: github.event.pull_request.merged == true && startsWith(github.event.pull_request.head.ref, 'release/')
runs-on: windows-latest
env:
python_ver: 3.11
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: get version
id: version
uses: notiz-dev/github-action-json-property@release
with:
path: 'plugin.json'
prop_path: 'Version'
- run: echo ${{steps.version.outputs.prop}}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r ./requirements.txt -t ./lib
Remove-Item -Recurse -Force .git
Compress-Archive -Path * -DestinationPath Flow.Launcher.Plugin.AnyVideo.Downloader.zip -Force
- name: Publish
if: success()
uses: softprops/action-gh-release@v1
with:
files: 'Flow.Launcher.Plugin.AnyVideo.Downloader.zip'
tag_name: "v${{steps.version.outputs.prop}}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}