From ef5865f506ac5e6075d9f918efaeaeb85ce6f470 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Mon, 12 Dec 2022 14:24:06 -0700 Subject: [PATCH] fix: add VERSION to env in publish.yaml (#5868) 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 7d824d37e..42aa1f322 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