Skip to content

Commit

Permalink
Supporting filepath in files configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
amarouane committed Apr 1, 2021
1 parent b43c824 commit 6778d92
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@

# 📖 Release notes

## v2.0.1
This release:
* Fixes the issue of `filepath` passed from `move-granules` step function



## v2.0.0
This release:
* Fixes the issue [issue 11](https://github.com/ghrcdaac/dmrpp-generator/issues/11).
Expand All @@ -22,6 +28,23 @@ This release fixes the problem adding a type of meta data for the dmrpp file and
## v1.0.4
This release fixes the problem of assuming the granuleId is the same as the file name [issue#9](https://github.com/ghrcdaac/dmrpp-generator/issues/9)

## 🏃 Migration Steps to v2.0.1
Change the source url in your terraform file to point to v2.0.0 release
```code
module "dmrpp-generator" {
source = "https://github.com/ghrcdaac/dmrpp-generator/releases/download/v2.0.1/dmrpp-generator.zip"
...
}
```
Change the value of your docker image to point to v2.0.1 tag
```code
module "dmrpp-generator" {
...
docker_image = "ghrcdaac/dmrpp-generator:v2.0.1"
}
## 🏃 Migration Steps to v2.0.0
Change the source url in your terraform file to point to v2.0.0 release
```code
Expand All @@ -30,7 +53,7 @@ source = "https://github.com/ghrcdaac/dmrpp-generator/releases/download/v2.0.0/d
...
}
```
Change the value of your docker image to point to v1.1.0 tag
Change the value of your docker image to point to v2.0.0 tag
```code
module "dmrpp-generator" {
...
Expand Down

0 comments on commit 6778d92

Please sign in to comment.