GOGS_ACCOUNT_TOKEN env var for upload nightlies
continuous-integration/drone/pr Build is pending Details

This commit is contained in:
Sarah Jamie Lewis 2024-02-26 14:08:21 -08:00
parent fcd16b19c8
commit a479c2aeba
Signed by: sarah
GPG Key ID: F27FD21A270837EF
1 changed files with 4 additions and 6 deletions

View File

@ -117,8 +117,8 @@ steps:
- name: upload-nightlies
image: openpriv/flutter-desktop:linux-fstable-3.13.4
environment:
BUILDFILES_KEY:
from_secret: buildfiles_key
GOGS_ACCOUNT_TOKEN:
from_secret: gogs_account_token
secrets: [gogs_account_token]
volumes:
- name: deps
@ -127,13 +127,11 @@ steps:
event: push
status: [ success ]
commands:
- echo $BUILDFILES_KEY > ~/id_rsab64
- base64 -d ~/id_rsab64 > ~/id_rsa
- chmod 400 ~/id_rsa
# TODO When we update Flutter Container to 3.19 migrate these calls...
- apt update
- apt install -y jq openssh-client ca-certificates curl
- ./upload-releases.sh deploy/cwtch-`cat VERSION`.apk application/vnd.android.package-archive
- cd deploy
- ../upload-releases.sh cwtch-`cat VERSION`.apk application/vnd.android.package-archive
- name: deploy-buildfiles
image: kroniak/ssh-client