Release product and their build aritfacts #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Release product and their build aritfacts | |
# | |
# References: | |
# | |
# * Workflow syntax for GitHub Actions - GitHub Docs | |
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions | |
# | |
# Copyright 2023 林博仁(Buo-ren, Lin) <[email protected]> | |
# SPDX-License-Identifier: CC-BY-SA-4.0 | |
name: Release product and their build aritfacts | |
on: | |
push: | |
tags: | |
- v*.*.* | |
jobs: | |
release: | |
name: Release product and their build aritfacts | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout content from the Git repository | |
uses: actions/checkout@v4 | |
- name: Determine the project identifier | |
run: printf "project_id=${GITHUB_REPOSITORY##*/}\\n" >> $GITHUB_ENV | |
- name: Determine the name of the Git tag | |
run: printf "release_tag=${GITHUB_REF##*/}\\n" >> $GITHUB_ENV | |
- name: Determine the release version string | |
run: printf "release_version=${release_tag#v}\\n" >> $GITHUB_ENV | |
- name: Determine the release identifier | |
run: printf "release_id=${project_id}-${release_version}\\n" >> $GITHUB_ENV | |
- name: Generate the release archive | |
run: |- | |
sudo ./continuous-integration/generate-build-artifacts.install-system-deps.sh | |
./continuous-integration/generate-build-artifacts.sh | |
- name: Generate the release description | |
run: ./continuous-integration/generate-release-description.sh | |
- name: Publish the release archive to the GitHub Releases | |
uses: softprops/[email protected] | |
with: | |
name: ${{ env.project_id }} ${{ env.release_version }} | |
files: | | |
${{ env.release_id }}.tar* | |
body_path: .detailed_changes |