mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-17 00:11:25 -07:00
11 lines
203 B
Bash
11 lines
203 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 "$bucket" "$filename" "$filename" |