Timestamp v0.10.2 #7
Workflow file for this run
This file contains hidden or 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: π Release | |
| on: | |
| push: | |
| # Release on semantic version tag. | |
| tags: ["v[0-9]+.[0-9]+.[0-9]+"] | |
| jobs: | |
| release: | |
| name: π Release on GitHub | |
| runs-on: ubuntu-latest | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| steps: | |
| - name: Check out the repo | |
| uses: actions/checkout@v4 | |
| - name: Generate Release Notes | |
| id: notes | |
| uses: theory/changelog-version-notes-action@v0 | |
| - name: Create GitHub Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| name: Release ${{ github.ref_name }} | |
| body_path: "${{ steps.notes.outputs.file }}" |