Translated using Weblate (English) #43
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
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
release: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: echo "::set-output name=VERSION::${GITHUB_REF#refs/tags/}" | |
id: version | |
- run: | | |
notes="$(sed --quiet '/^## ${{ steps.version.outputs.VERSION }}/,/^## /{/^## /b;p}' CHANGELOG.md)" | |
notes="${notes//'%'/'%25'}" | |
notes="${notes//$'\n'/'%0A'}" | |
notes="${notes//$'\r'/'%0D'}" | |
echo ::set-output name=NOTES::$notes | |
id: notes | |
- run: '[ -n "${{ steps.notes.outputs.NOTES }}" ] || (echo "Failed to parse changelog" && exit 1)' | |
- run: grep --quiet '^AC_INIT(\[blueman\], \[${{ steps.version.outputs.VERSION }}\]' configure.ac || (echo "Did not find expected version in configure.ac" && exit 1) | |
- run: "grep --quiet \"version: '${{ steps.version.outputs.VERSION }}'\" meson.build || (echo 'Did not find expected version in meson.build' && exit 1)" | |
- run: sudo apt-get update | |
- run: sudo apt-get install -y -qq --no-install-recommends automake autoconf libtool autopoint gettext cython3 libglib2.0-dev python3-dev python-gi-dev libbluetooth-dev | |
- run: CYTHONEXEC=cython3 ./autogen.sh | |
- run: CYTHONEXEC=cython3 make distcheck | |
- uses: softprops/action-gh-release@v2 | |
with: | |
draft: true | |
body: ${{ steps.notes.outputs.NOTES }} | |
files: | | |
blueman-${{ steps.version.outputs.VERSION }}.tar.xz | |
blueman-${{ steps.version.outputs.VERSION }}.tar.gz |