so effectively the s3 bucket is the source of truth for my repository and not the local aptly filesystem
What I'm currently doing is:
aptly repo create js-stable (one-time only)
aptly repo add js-stable $file_name.deb
aptly publish repo -distribution=js-stable --skip-signing js-stable s3:js-stable: (one-time only)
aptly publish update --skip-signing js-stable s3:js-stable:
What I think I need to do is:
aptly repo import js-stable (one-time only without a package name)
aptly repo add js-stable $file_name.deb
aptly publish update --skip-signing js-stable s3:js-stable:
It looks like `aptly repo import` needs a package name currently. I also thought about setting up a mirror but the docs say that mirrors don't support s3 private buckets currently?
Thanks for this awesome tool.
--
You received this message because you are subscribed to the Google Groups "aptly-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to aptly-discuss+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
On Thursday, November 6, 2014 10:49:40 AM UTC-8, jordan...@gmail.com wrote: