Skip to content

Commit

Permalink
chore(CD): automatically release on new semver tag
Browse files Browse the repository at this point in the history
  • Loading branch information
josselinonduty committed Aug 16, 2024
1 parent e3a7be0 commit 572d339
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release

on:
push:
tags:
- "v*"

jobs:
release:
name: "Release"
runs-on: "ubuntu-latest"

steps:
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
dist/*
LICENSE
README.md
CONTRIBUTING.md

0 comments on commit 572d339

Please sign in to comment.