Skip to content
Snippets Groups Projects
Commit 72e84d35 authored by Aleksandras Kostarevas's avatar Aleksandras Kostarevas
Browse files

Add testupload CI

parent b2d31073
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,7 @@ variables: ...@@ -9,6 +9,7 @@ variables:
stages: # List of stages for jobs, and their order of execution stages: # List of stages for jobs, and their order of execution
- build - build
- testupload
build: build:
tags: tags:
...@@ -40,4 +41,16 @@ build: ...@@ -40,4 +41,16 @@ build:
- ./*.apk - ./*.apk
- ./*.aab - ./*.aab
- ./*.txt - ./*.txt
when: manual
testupload:
tags:
- docker
stage: testupload
script:
- echo example > test.apk
- aws configure set aws_access_key_id $KEYBOARD_R2_ACCESS_KEY_ID
- aws configure set aws_secret_access_key $KEYBOARD_R2_SECRET_ACCESS_KEY
- aws configure set region $KEYBOARD_R2_DEFAULT_REGION
- aws s3 cp ./test.apk s3://$KEYBOARD_R2_BUCKET_NAME/test.apk
when: manual when: manual
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment