Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
seowalex committed Apr 21, 2023
1 parent 82e64ed commit 272ae14
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Release

on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+

jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Get version from tag
id: tag_name
run: echo current_version=${GITHUB_REF_NAME#v} >> $GITHUB_OUTPUT
- name: Checkout
uses: actions/checkout@v3
- name: Get changelog entry
id: changelog_reader
uses: mindsers/changelog-reader-action@v2
with:
version: ${{ steps.tag_name.outputs.current_version }}
validation_level: error
- name: Release
uses: softprops/action-gh-release@v1
with:
body: ${{ steps.changelog_reader.outputs.changes }}

0 comments on commit 272ae14

Please sign in to comment.