Overview
Comment: | Fix deploy script. |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
823b4fee655f67efce5b754ad0b96d5d |
User & Date: | robin.hansen on 2020-11-15 07:14:03 |
Other Links: | manifest | tags |
Context
2020-11-15
| ||
11:32 | Huge improvements to front page style. check-in: 6de38c26fd user: robin.hansen tags: trunk | |
07:14 | Fix deploy script. check-in: 823b4fee65 user: robin.hansen tags: trunk | |
07:10 | Move css of index.html into its own file. check-in: c6d5fc3f61 user: robin.hansen tags: trunk | |
Changes
Modified deploy.sh from [e21bdfb419] to [747abd8742].
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# Upload to s3 pushd dist aws s3 cp ./index.html s3://play-website \ --cache-control must-revalidate aws s3 cp ./index.*.css s3://play-website \ --cache-control immutable aws s3 cp ./playground.html s3://play-website \ --cache-control must-revalidate aws s3 cp ./playground.*.js s3://play-website \ --cache-control immutable popd |
| | |
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# Upload to s3 pushd dist aws s3 cp ./index.html s3://play-website \ --cache-control must-revalidate aws s3 cp ./*.css s3://play-website \ --cache-control immutable aws s3 cp ./playground.html s3://play-website \ --cache-control must-revalidate aws s3 cp ./*.js s3://play-website \ --cache-control immutable popd |