Skip to content

Commit 233a137

Browse files
ci: update deploy workflow to trigger on tag pushes only
1 parent 50f2322 commit 233a137

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
# https://github.com/actions/deploy-pages#usage
22
name: Deploy to GitHub Pages
33
on:
4-
workflow_dispatch:
54
push:
6-
branches:
7-
- main
5+
tags:
6+
- '*' # Runs on any tag push
87
jobs:
98
build_and_release:
109
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)