Skip to content

Commit

Permalink
Fix the release script for macOS
Browse files Browse the repository at this point in the history
`date --utc` is not POSIX and macOS doesn't have it.
`-u` is the standard equivalent.
  • Loading branch information
JulianKniephoff committed Apr 18, 2024
1 parent d49a2df commit 47d99f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/build-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ rm -rf build/
export PUBLIC_URL=/admin-ui
CI=false npm run build

FILENAME="oc-admin-ui-$(date --utc +%F).tar.gz"
FILENAME="oc-admin-ui-$(date -u +%F).tar.gz"
cd build
tar -czf ../$FILENAME *

0 comments on commit 47d99f8

Please sign in to comment.