We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f66fe0 commit 9e8f611Copy full SHA for 9e8f611
.github/workflows/deploy.yml
@@ -40,8 +40,10 @@ jobs:
40
run: npm run build
41
42
- name: Deploy Build
43
- uses: rossjrw/pr-preview-action@v1.4.7
44
- with:
45
- source-dir: ./dist/
46
- preview-branch: gh-pages
47
- umbrella-dir: .
+ uses: s0/git-publish-subdir-action@develop
+ env:
+ REPO: self
+ BRANCH: gh-pages # The branch name where you want to push the assets
+ FOLDER: dist # The directory where your assets are generated
48
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # GitHub will automatically add this - you don't need to bother getting a token
49
+ MESSAGE: "Build: ({sha}) {msg}" # The commit message
0 commit comments