From 08045d6d5836ef02aa6ff9f243c181f79a36a897 Mon Sep 17 00:00:00 2001 From: Nick Guenther Date: Thu, 8 Jun 2023 14:25:27 -0400 Subject: [PATCH] lint --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 60344cf60c1d5..320c913b6e801 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,7 +37,7 @@ jobs: run: | TAGS="bindata sqlite sqlite_unlock_notify pam" make build mkdir -p dist/release - cp -p gitea dist/release/gitea-$(git describe --tags --always)-linux-amd64 + cp -p gitea dist/release/gitea-"$(git describe --tags --always)"-linux-amd64 - name: Compress Release Assets run: | @@ -47,7 +47,7 @@ jobs: # each release asset in the official build process gets a separate .sha256 file # which means we need a loop to emulate it run: | - (cd dist/release; for asset in *; do sha256sum $asset > $asset.sha256; done) + (cd dist/release; for asset in *; do sha256sum "$asset" > "$asset".sha256; done) - name: Upload Release # this Action creates the release if not yet created