Skip to content

Commit

Permalink
ci: use push as trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
Zxilly committed Oct 7, 2022
1 parent eda1e0c commit 6ca51c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
release:
types:
- released
workflow_dispatch:
push:

jobs:
build:
Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:

- name: PreRelease Package
uses: marvinpinto/action-automatic-releases@latest
if: github.event_name == 'workflow_dispatch'
if: github.event_name == 'workflow_dispatch' || github.event_name == 'push'
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "${{ steps.current-time.outputs.formattedTime }}"
Expand Down

0 comments on commit 6ca51c4

Please sign in to comment.