Compare commits
No commits in common. "cdf35ecd5abf9f7524b3430b8a29f9f27852b0c4" and "4dc2425387c82c1bcc088cfbb57b524c3df767ea" have entirely different histories.
cdf35ecd5a
...
4dc2425387
2 changed files with 14 additions and 14 deletions
|
@ -44,7 +44,6 @@ pipeline:
|
||||||
api_key:
|
api_key:
|
||||||
from_secret: gitea_token
|
from_secret: gitea_token
|
||||||
base_url: https://gitea.zionetrix.net
|
base_url: https://gitea.zionetrix.net
|
||||||
note: dist/release_notes.md
|
|
||||||
files:
|
files:
|
||||||
- dist/check-syncrepl-extended-*/check_syncrepl_extended
|
- dist/check-syncrepl-extended-*/check_syncrepl_extended
|
||||||
- dist/*.deb
|
- dist/*.deb
|
||||||
|
@ -54,17 +53,19 @@ pipeline:
|
||||||
|
|
||||||
publish-apt:
|
publish-apt:
|
||||||
group: publish
|
group: publish
|
||||||
image: brenard/aptly-publish
|
image: brenard/curl
|
||||||
when:
|
when:
|
||||||
event: tag
|
event: tag
|
||||||
settings:
|
commands:
|
||||||
api_url:
|
- curl -u $APT_CREDS -X POST -F file=@$( ls dist/check-syncrepl-extended_*_all.deb ) $APT_API_URL/files/check-syncrepl-extended
|
||||||
from_secret: apt_api_url
|
- curl -u $APT_CREDS -X POST -F file=@$( ls dist/check-syncrepl-extended_*.buildinfo ) $APT_API_URL/files/check-syncrepl-extended
|
||||||
api_username:
|
- curl -u $APT_CREDS -X POST -F file=@$( ls dist/check-syncrepl-extended_*.changes ) $APT_API_URL/files/check-syncrepl-extended
|
||||||
from_secret: apt_api_username
|
- curl -u $APT_CREDS -X POST -F file=@$( ls dist/check-syncrepl-extended_*.dsc ) $APT_API_URL/files/check-syncrepl-extended
|
||||||
api_password:
|
- curl -u $APT_CREDS -X POST -F file=@$( ls dist/check-syncrepl-extended_*.tar.gz ) $APT_API_URL/files/check-syncrepl-extended
|
||||||
from_secret: apt_api_password
|
- curl -u $APT_CREDS -X POST $APT_API_URL/repos/$APT_REPO_NAME/include/check-syncrepl-extended
|
||||||
repo_name:
|
- APT_SNAP_NAME=$(date +%s)_$APT_REPO_NAME
|
||||||
from_secret: apt_repo_name
|
- >
|
||||||
path: dist
|
curl -u $APT_CREDS -X POST -H 'Content-Type: application/json' --data "{\"Name\":\"$APT_SNAP_NAME\"}" $APT_API_URL/repos/$APT_REPO_NAME/snapshots
|
||||||
source_name: check-syncrepl-extended
|
- >
|
||||||
|
curl -u $APT_CREDS -X PUT -H 'Content-Type: application/json' --data "{\"Snapshots\": [{\"Component\": \"main\", \"Name\": \"$APT_SNAP_NAME\"}]}" $APT_API_URL/publish/:./$APT_REPO_NAME
|
||||||
|
secrets: [ apt_api_url, apt_creds, apt_repo_name ]
|
||||||
|
|
1
build.sh
1
build.sh
|
@ -48,7 +48,6 @@ gitdch \
|
||||||
--version "${VERSION}" \
|
--version "${VERSION}" \
|
||||||
--code-name $DEBIAN_CODENAME \
|
--code-name $DEBIAN_CODENAME \
|
||||||
--output $BDIR/debian/changelog \
|
--output $BDIR/debian/changelog \
|
||||||
--release-notes dist/release_notes.md \
|
|
||||||
"${GITDCH_ARGS[@]}"
|
"${GITDCH_ARGS[@]}"
|
||||||
|
|
||||||
if [ -n "$MAINTAINER_NAME" -a -n "$MAINTAINER_EMAIL" ]
|
if [ -n "$MAINTAINER_NAME" -a -n "$MAINTAINER_EMAIL" ]
|
||||||
|
|
Loading…
Reference in a new issue