--- name: Create Release on: push: tags: - 'v*.*.*' jobs: release: name: Create Release runs-on: ubuntu-latest steps: - name: Create Release uses: fregante/release-with-changelog@v3 with: token: ${{ secrets.GITHUB_TOKEN }} title: 'Release {tag}' exclude: true commit-template: '- {title} ← {hash}' template: | ### Changelog {commits} {range} docker: name: Docker Publish Image uses: ./.github/workflows/docker.workflow.yml secrets: inherit with: platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64 push: true