ci: Add generation of changelog #295
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push | |
on: push | |
permissions: {} | |
jobs: | |
ci: | |
permissions: | |
contents: read # for actions/checkout | |
security-events: write # for codeql-action | |
uses: ./.github/workflows/ci.yml | |
deploy-to-gh-pages: | |
name: Deploy to GitHub Pages | |
needs: ci | |
if: github.ref == 'refs/heads/main' | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
permissions: | |
pages: write # for actions/deploy-pages | |
id-token: write # for actions/deploy-pages | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v2 | |
with: | |
artifact_name: demoDist |