mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 01:21:38 -07:00
11 lines
223 B
Bash
11 lines
223 B
Bash
#!/bin/bash
|
|
|
|
bucket=$1
|
|
platform=$2
|
|
artifact=$2
|
|
|
|
now=$(date +'%Y-%m-%d')
|
|
filename="odin-$platform-nightly+$now.zip"
|
|
|
|
7z a "output/$filename" -r "$artifact"
|
|
b2 upload-file --noProgress "$bucket" "output/$filename" "$filename" |