From 69e95ae3b9fb845c85bb90b3e0bd804c70d02e6d Mon Sep 17 00:00:00 2001
From: softprops <d.tangren@gmail.com>
Date: Sun, 25 Aug 2019 16:22:42 -0400
Subject: [PATCH] debug file being generated

---
 README.md | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 1fd4f0f..85bf6db 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
 # action gh-release [![](https://github.com/softprops/action-gh-release/workflows/Main/badge.svg)](https://github.com/softprops/action-gh-release/actions)
 
 
-A Github Action for creating Github Releases
+📦 A [Github Action](https://help.github.com/en/categories/automating-your-workflow-with-github-actions) for creating [Github Releases](https://help.github.com/en/articles/creating-releases)
 
 ## Usage
 
@@ -18,9 +18,11 @@ jobs:
         uses: actions/checkout@master
       - name: Build
         run: echo ${{ github.sha }} > Release.txt
+      - name: Test
+        run: cat Release.txt
       - name: Release
         uses: docker://softprops/action-gh-release
-        if: ${{ startsWith(github.ref, 'refs/tags/') }}
+        if: startsWith(github.ref, 'refs/tags/')
         with:
           files: Release.txt
         env: