Blame | Last modification | View Log | Download
# https://help.github.com/en/categories/automating-your-workflow-with-github-actionsname: "Create release"on:push:tags:- '*'jobs:deploy:name: "Deploy"runs-on: "ubuntu-latest"steps:- name: "Checkout"uses: actions/checkout@v4- name: Generate changelogid: changeloguses: metcalfc/changelog-generator@v4.1.0with:myToken: ${{ secrets.PHPSTAN_BOT_TOKEN }}- name: "Create release"id: create-releaseuses: actions/create-release@v1env:GITHUB_TOKEN: ${{ secrets.PHPSTAN_BOT_TOKEN }}with:tag_name: ${{ github.ref }}release_name: ${{ github.ref }}body: ${{ steps.changelog.outputs.changelog }}