File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -30,13 +30,16 @@ jobs:
30
30
cd docs
31
31
npm run build
32
32
33
+ - name : Add .nojekyll file
34
+ run : touch docs/out/.nojekyll
35
+
33
36
- name : Create CNAME file
34
- run : echo "ch-ui.caioricciuti.com" > docs/build /CNAME
37
+ run : echo "ch-ui.caioricciuti.com" > docs/out /CNAME
35
38
36
39
- name : Deploy to GitHub Pages
37
40
uses : peaceiris/actions-gh-pages@v3
38
41
with :
39
42
github_token : ${{ secrets.GITHUB_TOKEN }}
40
- publish_dir : ./docs/build
43
+ publish_dir : ./docs/out
41
44
user_name : " github-actions[bot]"
42
- user_email : " github-actions[bot]@users.noreply.github.com"
45
+ user_email : " github-actions[bot]@users.noreply.github.com"
Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
release :
10
- # Add this condition to check for "no-release" in the commit message
11
- if : " !contains(github.event.head_commit.message, 'no-release')"
12
10
runs-on : ubuntu-latest
11
+ if : ${{ !contains(github.event.head_commit.message, 'no-release') }}
13
12
permissions :
14
13
contents : write # Allow pushing the tag
15
14
steps :
You can’t perform that action at this time.
0 commit comments