Skip to content

actions-github-pages v3.6.0

Compare
Choose a tag to compare
@github-actions github-actions released this 04 May 00:54

New Feature

To set a full custom commit message without a triggered commit hash, use the full_commit_message option instead of the commit_message option.

Issue #274 by @dtolnay, Pull Request #275

- name: Deploy
  uses: peaceiris/actions-gh-pages@v3
  with:
    github_token: ${{ secrets.GITHUB_TOKEN }}
    publish_dir: ./public
    full_commit_message: ${{ github.event.head_commit.message }}

See CHANGELOG.md for more details.