Skip to content

Commit

Permalink
chore(ci): Web deploy trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies committed Nov 4, 2024
1 parent 74c63aa commit 874ead7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/web_validator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ on:
branches: [master, main]
release:
types: [published]
workflow_dispatch:
inputs:
deploy:
description: Deploy to github-pages
required: false
type: boolean


concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand All @@ -33,7 +40,7 @@ jobs:
deploy:
name: Deploy web validator
needs: build
if: github.event_name == 'release' && github.event.action == 'published'
if: github.event_name == 'release' || inputs.deploy
permissions:
contents: read
pages: write
Expand Down

0 comments on commit 874ead7

Please sign in to comment.