8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 00:03:02 +01:00
firebird-mirror/.github/actions/get-release-notes/action.yml
Adriano dos Santos Fernandes 3f0961396f GitHub Actions workflow improvements:
- Build tags and create releases for them in the main repository
- Do not build non-official builds for tags
- Package Release Notes with the builds
- Modularize actions
2023-04-01 11:19:26 -03:00

22 lines
624 B
YAML

name: Get Release Notes
description: Get Release Notes
runs:
using: composite
steps:
- name: Get release info
id: release-info
uses: ./.github/actions/release-info
- id: filename
if: steps.release-info.outputs.version
shell: bash
run: |
echo "filename=Firebird-${{ steps.release-info.outputs.version }}-ReleaseNotes.pdf" >> $GITHUB_OUTPUT
- id: copy-release-notes-file
if: steps.filename.outputs.filename
shell: bash
run: |
(cd doc && curl -OL https://firebirdsql.org/file/documentation/release_notes/${{ steps.filename.outputs.filename }})