Skip to content

⬆️ bump typos version to 1.43.4 #11

⬆️ bump typos version to 1.43.4

⬆️ bump typos version to 1.43.4 #11

Workflow file for this run

name: Release
on:
push:
tags:
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
workflow_dispatch:
jobs:
publish-release:
runs-on: ubuntu-latest
name: Publish to GitHub
if: "startsWith(github.ref, 'refs/tags/')"
permissions:
contents: write
steps:
- name: Get tag name
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: Publish to GitHub
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ env.RELEASE_VERSION }}