Skip to main content
Module

x/lume/.github/workflows/release.yml

πŸ”₯ Static site generator for Deno πŸ¦•
Very Popular
Go to Latest
File
name: Create Release
on: push: tags: - 'v*'
jobs: release: name: Create Release runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2
- 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).