13 lines
291 B
Bash
Executable File
13 lines
291 B
Bash
Executable File
#! /bin/sh
|
|
|
|
PACKAGE=${GITHUB_REPOSITORY#*/}
|
|
VERSION=$(date +%Y-%m-%dt%H.%M.%S)
|
|
|
|
for path in "$@"; do
|
|
fn=$(basename "$path")
|
|
curl \
|
|
--user "$GITHUB_ACTOR:$GITHUB_TOKEN" \
|
|
--upload-file "$path" \
|
|
$GITHUB_SERVER_URL/api/packages/$GITHUB_ACTOR/generic/$PACKAGE/$VERSION/$fn
|
|
done
|