From 62b2eac4ccc17d996503d285485a96d0902c7c56 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Mon, 12 Dec 2022 10:47:22 -0700 Subject: [PATCH] fix: add VERSION to env in publish.yaml When I did the last release, `VERSION` wasn't defined which lead to a blank string in the PR title and the commit message here: https://github.com/coder/code-server-aur/pull/24 This should fix that. --- .github/workflows/publish.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 7d824d37efd0..42aa1f32212b 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -127,6 +127,8 @@ jobs: - name: Validate package uses: hapakaien/archlinux-package-action@v2 + env: + VERSION: ${{ env.VERSION }} with: pkgver: ${{ env.VERSION }} updpkgsums: true