Skip to content

Commit

Permalink
Add GitHub workflow for publishing releases
Browse files Browse the repository at this point in the history
  • Loading branch information
z1nc0r3 committed Jul 29, 2024
1 parent d7d599d commit a95d084
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/Publish Release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Publish Release

on:
workflow_dispatch:
push:
branches: [ main ]
paths-ignore:
- .github/workflows/*

jobs:
publish:
runs-on: ubuntu-latest
env:
python_ver: 3.10

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
zip -r Flow.Launcher.Plugin.AnyVideo.Downloader.zip . -x '*.git*'
- 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 }}

0 comments on commit a95d084

Please sign in to comment.