Skip to content

Commit

Permalink
release from changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ktong committed Feb 4, 2024
1 parent 2f7a808 commit dfd21f4
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Tag
on:
push:
branches:
- main
pull_request:
branches:
- main

permissions:
contents: write

jobs:
release:
name: From changelog
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Get latest release info
id: query-release-info
uses: release-flow/keep-a-changelog-action@v2
with:
command: query
version: latest

- name: Display release info
run: |
echo "$Version: {{ steps.query-release-info.outputs.version }}"
echo "$Date: {{ steps.query-release-info.outputs.release-date }}"
echo "${{ steps.query-release-info.outputs.release-notes }}"

0 comments on commit dfd21f4

Please sign in to comment.