diff --git a/.woodpecker.yml b/.woodpecker.yml index c973185..c904214 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -51,26 +51,17 @@ pipeline: publish-apt: group: publish - image: brenard/curl + image: brenard/aptly-publish when: event: tag - commands: - - echo "Upload files..." - - curl --silent -u $APT_CREDS -X POST -F file=@$( ls dist/check-slapdd-crc32_*_all.deb ) $APT_API_URL/files/check-slapdd-crc32 - - curl --silent -u $APT_CREDS -X POST -F file=@$( ls dist/check-slapdd-crc32_*.buildinfo ) $APT_API_URL/files/check-slapdd-crc32 - - curl --silent -u $APT_CREDS -X POST -F file=@$( ls dist/check-slapdd-crc32_*.changes ) $APT_API_URL/files/check-slapdd-crc32 - - curl --silent -u $APT_CREDS -X POST -F file=@$( ls dist/check-slapdd-crc32_*.dsc ) $APT_API_URL/files/check-slapdd-crc32 - - curl --silent -u $APT_CREDS -X POST -F file=@$( ls dist/check-slapdd-crc32_*.tar.gz ) $APT_API_URL/files/check-slapdd-crc32 - - curl --silent -u $APT_CREDS -X POST $APT_API_URL/repos/$APT_REPO_NAME/include/check-slapdd-crc32 - - APT_SNAP_NAME=$(date +%s)_$APT_REPO_NAME - - echo "Create snapshot of repository $APT_REPO_NAME ($APT_SNAP_NAME)..." - - > - curl --silent -u $APT_CREDS -X POST -H 'Content-Type: application/json' --data "{\"Name\":\"$APT_SNAP_NAME\"}" $APT_API_URL/repos/$APT_REPO_NAME/snapshots - - echo "Update published snapshot for repository $APT_REPO_NAME (use $APT_SNAP_NAME)..." - - > - curl --silent -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 - - echo "Check uploaded packages..." - - > - curl --silent -u $APT_CREDS "$APT_API_URL/repos/stable/packages?q=check-slapdd-crc32"|jq - - echo "Done" - secrets: [ apt_api_url, apt_creds, apt_repo_name ] + settings: + api_url: + from_secret: apt_api_url + api_username: + from_secret: apt_api_username + api_password: + from_secret: apt_api_password + repo_name: + from_secret: apt_repo_name + path: dist + source_name: check-slapdd-crc32