Skip to content

Commit

Permalink
skip version check if workflow is executed manually.
Browse files Browse the repository at this point in the history
  • Loading branch information
daidokoro committed Dec 12, 2023
1 parent e408d4c commit 4505063
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ env:

jobs:
check_version:
if: github.event_name != 'workflow_dispatch'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand Down Expand Up @@ -55,6 +56,7 @@ jobs:
build:
name: build
needs: check_version
if: github.event_name != 'workflow_dispatch'
runs-on: ubuntu-latest
steps:
- name: checkout
Expand Down

0 comments on commit 4505063

Please sign in to comment.