diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index f8c78c7..fb94370 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -12,7 +12,7 @@ jobs: run: curl -sL ${{ gitea.server_url }}/${{ gitea.repository }}/archive/${{ gitea.event.release.tag_name }}.tar.gz --output tarball.tar.gz - name: Debug output - run: echo ${{ gitea.href }} + run: echo ${{ gitea.ref }} - name: Calculate SHA256 for the tarball run: echo "tbSum=$(sha256sum tarball.tar.gz | cut -d ' ' -f 1)" >> $GITHUB_ENV @@ -23,6 +23,9 @@ jobs: - name: Create a directory run: mkdir aur + - name: Release permissions + run: chmod 777 aur + - name: Copy PKGBUILD to the directory run: cp mlc/packaging/Archlinux/PKGBUILD aur/ @@ -32,7 +35,7 @@ jobs: - name: create SRCINFO working-directory: aur - run: makepkg --printsrcinfo > .SRCINFO + run: sudo -u build makepkg --printsrcinfo > .SRCINFO - name: Debug print PKGBUILD run: cat aur/PKGBUILD diff --git a/CMakeLists.txt b/CMakeLists.txt index 4b82d3b..ad34ca8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.5) project( mlc - VERSION 1.3.22 + VERSION 1.3.23 DESCRIPTION "Media Library Compiler: rips your media library to a lossy compilation" LANGUAGES CXX ) diff --git a/packaging/Archlinux/PKGBUILD b/packaging/Archlinux/PKGBUILD index 780d5ce..b824d22 100644 --- a/packaging/Archlinux/PKGBUILD +++ b/packaging/Archlinux/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Yury Gubich pkgname=mlc -pkgver=1.3.22 +pkgver=1.3.23 pkgrel=1 pkgdesc="Media Library Compiler: rips your media library to a lossy compilation" arch=('i686' 'x86_64')