Replies: 1 comment 4 replies
-
@green3g I don't see a super-clean way of doing this. One idea would be to create some versioned |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to use a cdn for deployment of application assets, and I"d like to be able to maintain multiple versions of these assets in the cdn, so when we do new deploys, the application can request the new versions of the assets, and we can easily test our and/or roll back between multiple versions of assets when different apps get deployed. To do so, I'm setting up an s3 bucket with prefixes corresponding to version numbers of the application, IE:
/v1.2.3/packs
,/v1.2.3/assets
, etc.I'd like to change the output path for the built files when shakapacker runs - the motivation is to use an environment variable in the environment to output the shakacker build.
For example, I want to change the path based on the version of my application ->
which would put files in
public/v1-2-3/packs/*
Is this possible in current features?
Beta Was this translation helpful? Give feedback.
All reactions