mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 00:03:02 +01:00
3f0961396f
- 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
22 lines
624 B
YAML
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 }})
|