1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 15:39:43 +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
@@ -9,4 +10,4 @@ jobs:
- uses: dawidd6/action-homebrew-bump-formula@v3
with:
token: ${{secrets.HOMEBREW_FORMULA_GH_TOKEN}}
formula: dotdrop
formula: dotdrop

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