9 Commits

Author SHA1 Message Date
943aecfe55 Escape the variables
Some checks failed
continuous-integration/drone/push Build was killed
2022-11-02 17:18:50 +13:00
4924606317 ..
Some checks failed
continuous-integration/drone/push Build was killed
2022-11-02 17:14:24 +13:00
41b5efa39b Missing comma again :(
Some checks failed
continuous-integration/drone/push Build was killed
2022-11-02 16:58:11 +13:00
aece1b662a Add echo for testing
Some checks failed
continuous-integration/drone/push Build encountered an error
2022-11-02 16:57:16 +13:00
3cd00a0d1d missing comma
Some checks failed
continuous-integration/drone/push Build was killed
2022-11-02 16:43:55 +13:00
f1999f47f7 echo env
Some checks failed
continuous-integration/drone/push Build encountered an error
2022-11-02 16:42:27 +13:00
0768d5fb3e Added secrets to environment variables
Some checks failed
continuous-integration/drone/push Build was killed
2022-11-02 16:40:15 +13:00
d9e71bec29 Update apk package list
Some checks failed
continuous-integration/drone/push Build was killed
2022-11-02 16:33:54 +13:00
85213537ce Check curl is available
Some checks failed
continuous-integration/drone/push Build was killed
2022-11-02 16:33:26 +13:00

View File

@@ -73,12 +73,21 @@ local gen_release() =
name: 'Generate Release',
commands: [
'sleep 10', // give docker enough time to start
'env',
'mkdir ${DRONE_REPO_NAME}',
'rsync -a . ${DRONE_REPO_NAME} --exclude ${DRONE_REPO_NAME}',
'cd ${DRONE_REPO_NAME}',
'echo GITEA_USER=${USER}',
'apk update && apk add --no-cache curl',
'tar -czf ../${DRONE_REPO_NAME}.${DRONE_TAG}.tar.gz ./*', // Create an archive of the role
'curl --user ${GITEA_USER}:${GITEA_TOKEN} --upload-file ../${DRONE_REPO_NAME}.${DRONE_TAG}.tar.gz https://${GITEA_URL}/api/packages/${GITEA_REPOUSER}/generic/ansible-role-common/${DRONE_TAG}/${DRONE_REPO_NAME}.${DRONE_TAG}.tar.gz',
'curl --user $${USER}:$${TOKEN} --upload-file ../${DRONE_REPO_NAME}.${DRONE_TAG}.tar.gz https://$${URL}/api/packages/$${REPOUSER}/generic/ansible-role-common/${DRONE_TAG}/${DRONE_REPO_NAME}.${DRONE_TAG}.tar.gz',
],
environment:
{ USER: { from_secret: 'GITEA_USER' },
TOKEN: { from_secret: 'GITEA_TOKEN' },
REPOUSER: { from_secret: 'GITEA_REPOUSER'},
URL: { from_secret: 'GITEA_URL' },
},
when:
{ event: {include: ['tag']},
},