Create Release #6
Workflow file for this run
This file contains 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: Create Release | |
on: | |
push: | |
tags: | |
- "v*.*.*" # This will trigger on version tags like v0.0.1, v0.1.0, v1.0.0, etc. | |
permissions: | |
contents: write | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Create GitHub Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
body: | | |
## Changes | |
- Initial release of Typewriter.nvim. | |
- Features: | |
- Keeps the cursor centered on the screen while typing or navigating. | |
- Simple commands to enable, disable, and toggle the typewriter mode. | |
- Integrates with ZenMode and True Zen for a seamless distraction-free environment. | |
draft: false | |
prerelease: false |