Skip to content

⬆️ bump ast-grep version to 0.40.5 #2

⬆️ bump ast-grep version to 0.40.5

⬆️ bump ast-grep version to 0.40.5 #2

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 }}