Skip to content

Commit a34ef17

Browse files
authored
Fix issue on workflow runs
1 parent 7f11584 commit a34ef17

1 file changed

Lines changed: 1 addition & 35 deletions

File tree

.github/workflows/deploy-to-pages.yml

Lines changed: 1 addition & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -3,47 +3,13 @@ name: Deploy to GitHub Pages
33
on:
44
# Runs on pushes to any branch to validate build (only when code changes)
55
push:
6-
paths:
7-
- 'src/**'
8-
- 'index.html'
9-
- 'package.json'
10-
- 'package-lock.json'
11-
- 'vite.config.ts'
12-
- 'vite.config.js'
13-
- 'vite.github-pages.config.ts'
14-
- 'vitest.config.ts'
15-
- 'tsconfig.json'
16-
- 'tailwind.config.js'
17-
- 'components.json'
18-
- 'build-for-gh-pages.sh'
19-
- 'build-for-pages.sh'
20-
- 'deploy-to-pages.sh'
21-
- 'deploy.sh'
22-
- '.github/workflows/**'
236
paths-ignore:
247
- '**.md'
258
- 'LICENSE'
269
- 'SECURITY.md'
2710

2811
# Runs on pull requests to validate build (only when code changes)
2912
pull_request:
30-
paths:
31-
- 'src/**'
32-
- 'index.html'
33-
- 'package.json'
34-
- 'package-lock.json'
35-
- 'vite.config.ts'
36-
- 'vite.config.js'
37-
- 'vite.github-pages.config.ts'
38-
- 'vitest.config.ts'
39-
- 'tsconfig.json'
40-
- 'tailwind.config.js'
41-
- 'components.json'
42-
- 'build-for-gh-pages.sh'
43-
- 'build-for-pages.sh'
44-
- 'deploy-to-pages.sh'
45-
- 'deploy.sh'
46-
- '.github/workflows/**'
4713
paths-ignore:
4814
- '**.md'
4915
- 'LICENSE'
@@ -103,4 +69,4 @@ jobs:
10369
steps:
10470
- name: Deploy to GitHub Pages
10571
id: deployment
106-
uses: actions/deploy-pages@v4
72+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)