Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update token used for gh-pages deployments #1085

Merged
merged 2 commits into from
Oct 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
name: Deploy to GitHub Pages
permissions:
contents: write

on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab

jobs:
Expand Down Expand Up @@ -34,7 +30,7 @@ jobs:
- name: Deploy dapps
uses: peaceiris/actions-gh-pages@068dc23d9710f1ba62e86896f84735d869951305
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
github_token: ${{ secrets.DEPLOY_TOKEN }}
force_orphan: true
keep_files: true # Important to keep the rest of the files deployed previously
publish_dir: ./deployments
Expand Down
Loading