From aff8989f53843d4789c5552d5ecc7132f05fde13 Mon Sep 17 00:00:00 2001 From: Cedric van Putten Date: Wed, 17 Apr 2019 00:24:06 +0200 Subject: [PATCH] release: new release for node memory limit fix --- CHANGELOG.md | 17 +++++++++++++++++ README.md | 6 +++--- 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10893d04..f3b5f3a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +## [2.3.1](https://github.com/expo/expo-github-action/compare/2.3.0...2.3.1) (2019-04-17) + +### Bug fixes + +* increase node memory limit to 4gb ([4c25ef9](https://github.com/expo/expo-github-action/commit/4c25ef9)) + +### Documentation changes + +* add note about overwriting node options ([aa752f2](https://github.com/expo/expo-github-action/commit/aa752f2)) +* add extra link to base image in description ([fa42241](https://github.com/expo/expo-github-action/commit/fa42241)) +* rename build action to remove ambiguity with other examples ([92beb0f](https://github.com/expo/expo-github-action/commit/92beb0f)) + +### Other chores + +* make travis build the action to double check the docker file ([698a1c6](https://github.com/expo/expo-github-action/commit/698a1c6)) + + ## [2.3.0](https://github.com/expo/expo-github-action/compare/2.2.0...2.3.0) (2019-04-14) ### New features diff --git a/README.md b/README.md index 61a2c228..01556c16 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ action "Install" { action "Publish" { needs = "Install" - uses = "expo/expo-github-action@2.3.0" + uses = "expo/expo-github-action@2.3.1" args = "publish" secrets = ["EXPO_CLI_USERNAME", "EXPO_CLI_PASSWORD"] } @@ -110,7 +110,7 @@ action "Filter branch" { action "Publish" { needs = "Filter branch" - uses = "expo/expo-github-action@2.3.0" + uses = "expo/expo-github-action@2.3.1" args = "publish" secrets = ["EXPO_CLI_USERNAME", "EXPO_CLI_PASSWORD"] } @@ -143,7 +143,7 @@ action "Test" { action "Build" { needs = "Test" - uses = "expo/expo-github-action@2.3.0" + uses = "expo/expo-github-action@2.3.1" args = "build:web" } ```