1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-15 12:15:05 +00:00

allow to run all workflow manually

This commit is contained in:
deadc0de6
2022-12-14 16:29:17 +01:00
parent 47faf8f4d2
commit a61cde46a8
4 changed files with 5 additions and 2 deletions

View File

@@ -2,6 +2,7 @@ name: Release to aur
on:
release:
types: [created]
workflow_dispatch:
jobs:
aur_publish:
runs-on: ubuntu-latest

View File

@@ -2,6 +2,7 @@ name: Release to Homebrew
on:
release:
types: [created]
workflow_dispatch:
jobs:
homebrew-core:
runs-on: ubuntu-latest

View File

@@ -2,6 +2,7 @@ name: Release to PyPI
on:
release:
types: [created]
workflow_dispatch:
jobs:
pypi_publish:
runs-on: ubuntu-latest

View File

@@ -1,5 +1,5 @@
name: tests
on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-20.04