Skip to content

Commit

Permalink
fixing build workflow #2
Browse files Browse the repository at this point in the history
  • Loading branch information
tarach committed Jan 18, 2024
1 parent 6ac6ad6 commit 4ad3555
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ jobs:
set -x
assets=("sslgen.phar" "sslgen.phar.sha1" "sslgen.phar.sha256")
tag_name="${GITHUB_REF##*/}"
hub release create "${assets[@]}" -m "$tag_name" "$tag_name"
for asset in "${assets[@]}"; do
hub release edit --attach "${assets[@]}" -m "" "$tag_name"
done
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
1 change: 1 addition & 0 deletions bin/create
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ file_put_contents($filePath . '.' . '.sha256', $sha256);

echo "Filesize: " . filesize($filePath) . PHP_EOL;
echo "SHA1: " . $sha1 . PHP_EOL;
echo "SHA256: " . $sha256 . PHP_EOL;

0 comments on commit 4ad3555

Please sign in to comment.