From ba53b8cea3aa025d17094dbd6c541b046a5f5d7a Mon Sep 17 00:00:00 2001 From: damithc Date: Mon, 30 Aug 2021 12:32:21 +0800 Subject: [PATCH] DevOps.md: Fix typo shadow -> shadowJar --- docs/DevOps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/DevOps.md b/docs/DevOps.md index 4414eea3344..ca59d92f2cb 100644 --- a/docs/DevOps.md +++ b/docs/DevOps.md @@ -74,6 +74,6 @@ Any warnings or errors will be printed out to the console. Here are the steps to create a new release. 1. Update the version number in [`MainApp.java`](https://github.com/se-edu/addressbook-level3/tree/master/src/main/java/seedu/address/MainApp.java). -1. Generate a fat JAR file using Gradle (i.e., `gradlew shadow`). +1. Generate a fat JAR file using Gradle (i.e., `gradlew shadowJar`). 1. Tag the repo with the version number. e.g. `v0.1` 1. [Create a new release using GitHub](https://help.github.com/articles/creating-releases/). Upload the JAR file you created.