generated from Templates/Baseline
add upload command
This commit is contained in:
parent
aec06f2fae
commit
aea855b518
@ -11,12 +11,18 @@ steps:
|
||||
test-next:
|
||||
image: gitea.ocram85.com/plugins/gitea-package:next
|
||||
pull: true
|
||||
secrets: [ gitea_user, gitea_passwd]
|
||||
settings:
|
||||
user:
|
||||
from_secret: gitea_user
|
||||
password:
|
||||
from_secret: gitea_passwd
|
||||
debug: "true"
|
||||
owner: "testuser"
|
||||
package_name: "dummy_package"
|
||||
package_version: "0.1.0"
|
||||
file_name: "./README.md"
|
||||
file_source: "./README.md"
|
||||
file_name: "readme.md"
|
||||
update: "true"
|
||||
when:
|
||||
event: pull_request
|
||||
|
@ -43,13 +43,14 @@ showSettings() {
|
||||
say "PLUGIN_PACKAGE_NAME: $PLUGIN_PACKAGE_NAME" "showSettings"
|
||||
say "PLUGIN_PACKAGE_VERSION: $PLUGIN_PACKAGE_VERSION" "showSettings"
|
||||
say "PLUGIN_FILE_NAME: $PLUGIN_FILE_NAME" "showSettings"
|
||||
say "PLUGIN_FILE_SOURCE: $PLUGIN_FILE_SOURCE" "showSettings"
|
||||
say "PLUGIN_UPDATE: $PLUGIN_UPDATE" "showSettings"
|
||||
}
|
||||
|
||||
uploadArtifact() {
|
||||
curl --user your_username:your_password_or_token \
|
||||
--upload-file path/to/file.bin \
|
||||
https://gitea.example.com/api/packages/testuser/generic/test_package/1.0.0/file.bin
|
||||
curl --user "$PLUGIN_USER:$PLUGIN_PASSWORD" \
|
||||
--upload-file "$PLUGIN_FILE_SOURCE" \
|
||||
"$CI_FORGE_URL/api/packages/$PLUGIN_OWNER/generic/$PLUGIN_PACKAGE_NAME/$PLUGINPACKAGE_VERSION/$PLUGIN_FILE_NAME"
|
||||
}
|
||||
|
||||
main() {
|
||||
@ -58,8 +59,8 @@ main() {
|
||||
showSettings
|
||||
sayW "Available ENV vars:"
|
||||
showENV
|
||||
exit 0
|
||||
fi
|
||||
uploadArtifact
|
||||
}
|
||||
|
||||
main "$@"
|
||||
|
Loading…
Reference in New Issue
Block a user