mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-21 20:56:09 +03:00
Don't delete old releases from the website
It's convenient for old releases to be available indefinitely so that deployment scripts can retrieve a particular qualified version. This won't affect the disk space requirements of the repository, since the old packages will be in the Git history anyhow. Move packages to a subdirectory of the site root to avoid causing permanent clutter.
This commit is contained in:
parent
15994b688b
commit
c7c7b202dd
@ -57,7 +57,7 @@ module.exports = function(grunt) {
|
||||
build: ["build"],
|
||||
"package": [packageDir],
|
||||
release: {
|
||||
src: [releaseRoot],
|
||||
src: [releaseRoot + '*', '!' + releaseRoot + 'releases'],
|
||||
options: {
|
||||
force: true
|
||||
}
|
||||
@ -88,7 +88,7 @@ module.exports = function(grunt) {
|
||||
compress: {
|
||||
zip: {
|
||||
options: {
|
||||
archive: "build/" + packageDirName + ".zip",
|
||||
archive: "build/releases/" + packageDirName + ".zip",
|
||||
level: 9
|
||||
},
|
||||
files: [
|
||||
@ -97,7 +97,7 @@ module.exports = function(grunt) {
|
||||
},
|
||||
tar: {
|
||||
options: {
|
||||
archive: "build/" + packageDirName + ".tar.gz",
|
||||
archive: "build/releases/" + packageDirName + ".tar.gz",
|
||||
level: 9
|
||||
},
|
||||
files: [
|
||||
|
@ -4,9 +4,10 @@ An open-source, web-based viewer for zoomable images, implemented in pure JavaSc
|
||||
|
||||
See it in action at http://openseadragon.github.io/.
|
||||
|
||||
## Stable Build
|
||||
## Stable Builds
|
||||
|
||||
The latest stable builds are here: [Zip](http://openseadragon.github.io/openseadragon.zip) or [Tar](http://openseadragon.github.io/openseadragon.tar.gz).
|
||||
Stable builds of OpenSeadragon releases are available
|
||||
[here](http://openseadragon.github.io/releases/).
|
||||
|
||||
## First Time Setup
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user