Skip to content

Commit

Permalink
Merge pull request #658 from zalsader/main
Browse files Browse the repository at this point in the history
Automatically generate releases when a tag is pushed
  • Loading branch information
tonybaloney authored Jan 27, 2025
2 parents f3df8bc + 8ec38af commit 9a273d3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ name: CI
on:
push:
branches: [main]
tags: ["*.*.*"]
pull_request:
branches: [main]

Expand Down Expand Up @@ -45,3 +46,10 @@ jobs:
- uses: actions/upload-artifact@v4
with:
path: "*.vsix"
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
generate_release_notes: true
draft: true
files: "*.vsix"

0 comments on commit 9a273d3

Please sign in to comment.