1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-11 04:24:16 +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: on:
release: release:
types: [created] types: [created]
workflow_dispatch:
jobs: jobs:
aur_publish: aur_publish:
runs-on: ubuntu-latest runs-on: ubuntu-latest

View File

@@ -2,6 +2,7 @@ name: Release to Homebrew
on: on:
release: release:
types: [created] types: [created]
workflow_dispatch:
jobs: jobs:
homebrew-core: homebrew-core:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -9,4 +10,4 @@ jobs:
- uses: dawidd6/action-homebrew-bump-formula@v3 - uses: dawidd6/action-homebrew-bump-formula@v3
with: with:
token: ${{secrets.HOMEBREW_FORMULA_GH_TOKEN}} token: ${{secrets.HOMEBREW_FORMULA_GH_TOKEN}}
formula: dotdrop formula: dotdrop

View File

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

View File

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