Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kousu authored and actions-user committed Oct 31, 2023
1 parent 53e1204 commit 08045d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
Expand Down

0 comments on commit 08045d6

Please sign in to comment.