Skip to content

Commit

Permalink
Automate releasing on GitHub (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
ybiquitous committed Dec 31, 2023
1 parent 9e092a7 commit 95ecede
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Release

on:
push:
tags: ['**']

concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true

jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create release
uses: stylelint/changelog-to-github-release-action@main

0 comments on commit 95ecede

Please sign in to comment.