mirror of
https://github.com/chenxiaolong/avbroot.git
synced 2026-07-03 14:05:11 +02:00
4fc694039e
The e2e checksums had to be updated due to bug fixes in the lzma-rust2 encoder: https://github.com/hasenbanck/lzma-rust2/compare/v0.16.2...v0.16.4 Signed-off-by: Andrew Gunnerson <accounts+github@chiller3.com>
36 lines
1009 B
YAML
36 lines
1009 B
YAML
name: Github Release
|
|
on:
|
|
push:
|
|
# Uncomment to test against a branch
|
|
#branches:
|
|
# - ci
|
|
tags:
|
|
- 'v*'
|
|
jobs:
|
|
create_release:
|
|
name: Create Github release
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Get version from tag
|
|
id: get_version
|
|
run: |
|
|
if [[ "${GITHUB_REF}" == refs/tags/* ]]; then
|
|
version=${GITHUB_REF#refs/tags/v}
|
|
else
|
|
version=0.0.0.${GITHUB_REF#refs/heads/}
|
|
fi
|
|
echo "version=${version}" >> "${GITHUB_OUTPUT}"
|
|
|
|
- name: Check out repository
|
|
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
|
|
|
- name: Create release
|
|
uses: softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda # v3.0.0
|
|
with:
|
|
tag_name: v${{ steps.get_version.outputs.version }}
|
|
name: Version ${{ steps.get_version.outputs.version }}
|
|
body_path: RELEASE.md
|
|
draft: true
|