deno.land / x / lume@v2.1.4 / .github / workflows / release.yml
12345678910111213141516171819202122232425name: Create Release
on: push: tags: - 'v*'
jobs: release: name: Create Release runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v3
- name: Create Release uses: actions/create-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: ${{ github.ref }} release_name: ${{ github.ref }} body: | See the [changelog](CHANGELOG.md).
Version Info