Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
roshkhatri committed Apr 2, 2024
1 parent db52c23 commit 05ed869
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/cron-unstable-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,18 @@ jobs:
run: make install

- name: Display /usr/local/bin/ contents
run: ls /usr/local/bin/
run: ls /usr/local/bin/

- name: Create tarball and checksums
run: echo "TAR_FILE_NAME=valkey-server-unstable.linux.$date" >> $GITHUB_OUTPUT
run: |
mkdir -p $TAR_FILE_NAME/bin $TAR_FILE_NAME/share
cp -fv /usr/local/bin/valkey-* $TAR_FILE_NAME/bin
cp -v /home/runner/work/valkey/valkey/COPYING $TAR_FILE_NAME/share/LICENSE
tar -czvf $TAR_FILE_NAME.tar.gz -C $TAR_FILE_NAME --exclude-vcs .
sha256sum $TAR_FILE_NAME.tar.gz > $TAR_FILE_NAME.tar.gz.sha256
# Move to a directory to simplify upload/sync
mkdir -p source-packages
cp -fv $TAR_FILE_NAME* source-packages/
ls source-packages/
shell: bash

0 comments on commit 05ed869

Please sign in to comment.