mirror of
https://github.com/sot-tech/mochi.git
synced 2026-04-30 17:40:00 -07:00
8 lines
344 B
Bash
8 lines
344 B
Bash
#!/bin/sh
|
|
|
|
vv="`git describe --tags --abbrev=0`"
|
|
tt="`TZ=UTC date +'%Z %F'`"
|
|
|
|
tar -czf /out/"mochi-${vv}-linux-amd64.tar.gz" --owner=root --group=root --numeric-owner --mtime="${tt}" "mochi-${vv}-linux-amd64"
|
|
tar -czf /out/"mochi-${vv}-linux-aarch64.tar.gz" --owner=root --group=root --numeric-owner --mtime="${tt}" "mochi-${vv}-linux-aarch64"
|