We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb943fb commit f487b14Copy full SHA for f487b14
.github/workflows/deploy.yml
@@ -3,7 +3,7 @@ name: Publish Selenium Site
3
on:
4
push:
5
branches:
6
- - master
+ - dev
7
8
jobs:
9
deploy:
@@ -17,7 +17,16 @@ jobs:
17
uses: peaceiris/actions-hugo@v2
18
with:
19
hugo-version: '0.66.0'
20
- - name: Deploy
21
- run: chmod +x deploy.sh && ./deploy.sh
+ - name: Build
+ run: chmod +x build-site.sh && ./build-site.sh
22
env:
23
SELENIUM_CI_TOKEN: ${{secrets.SELENIUM_CI_TOKEN}}
24
+ - name: Deploy
25
+ uses: peaceiris/actions-gh-pages@v3
26
+ with:
27
+ personal_token: ${{ secrets.SELENIUM_CI_TOKEN }}
28
+ publish_dir: ./site_source_files/public
29
+ publish_branch: master
30
+ user_name: 'Selenium CI Bots'
31
+ user_email: '[email protected]'
32
+ commit_message: ${{ github.event.head_commit.message }}
0 commit comments