Skip to content

Commit

Permalink
change workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
fumikito committed Nov 30, 2023
1 parent 380f1c1 commit 7ce28d2
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/wordpress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,17 @@ jobs:
- name: Check Build succeed
run: npm run build

status-check:
runs-on: ubuntu-latest
name: Check Status
needs: [test, assets, lint]
steps:
- name: Display Status
run: echo "All Green!"

release:
name: Upload Release
needs: [test, assets]
needs: [status-check]
if: contains(github.ref, 'tags/')
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 7ce28d2

Please sign in to comment.