From a2526af2ace968fabe781e1ecdd0ff1f5cda601b Mon Sep 17 00:00:00 2001
From: David Baker Effendi <davidbakereffendi@hotmail.com>
Date: Mon, 8 Feb 2021 14:15:53 +0200
Subject: [PATCH] :bookmark: Release v0.1.4

---
 .github/workflows/release.yml | 3 ++-
 plume/build.gradle            | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 5795da73..ee2e0b4f 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -2,7 +2,6 @@ name: Release
 
 on:
   push:
-    branches: [ master ]
     tags: [ 'v*' ] # Push events to matching v*, i.e. v1.0, v20.15.10
 
 jobs:
@@ -24,6 +23,8 @@ jobs:
         run: chmod +x gradlew
       - name: Build code
         run: ./gradlew assemble
+      - name: Publish code
+        run: ./gradlew publishToMavenLocal
       - name: Create Release
         id: create_release
         uses: actions/create-release@v1
diff --git a/plume/build.gradle b/plume/build.gradle
index bb6a9291..1de6b113 100644
--- a/plume/build.gradle
+++ b/plume/build.gradle
@@ -172,7 +172,7 @@ dockerCompose {
 def artifactDesc = "Plume is a code property graph analysis library with options to extract the CPG from" +
         " Java bytecode and store the result in various graph databases."
 def repoUrl = "https://github.com/plume-oss/plume.git"
-def artifactVersion = "0.1.3"
+def artifactVersion = "0.1.4"
 def website = "https://plume-oss.github.io/plume-docs/"
 
 group = "io.github.plume-oss"