Skip to content

Commit

Permalink
chore: deploy pages
Browse files Browse the repository at this point in the history
  • Loading branch information
j-zimnowoda committed Jul 4, 2024
1 parent e48bf91 commit fb925c1
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:

jobs:
deploy:
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
Expand All @@ -28,13 +32,13 @@ jobs:
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GH_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}
# Build output to publish to the `gh-pages` branch:
publish_dir: ./build
# The following lines assign commit authorship to the official
# GH-Actions bot for deploys to `gh-pages` branch:
# https://github.com/actions/checkout/issues/13#issuecomment-724415212
# The GH actions bot is used by default if you didn't specify the two fields.
# You can swap them out with your own user credentials.
user_name: redkubesbot
user_email: redkubesbot@users.noreply.github.com
user_name: linode-gh-bot
user_email: linode-gh-bot@users.noreply.github.com

0 comments on commit fb925c1

Please sign in to comment.