debug file being generated
This commit is contained in:
parent
0ec40de46f
commit
69e95ae3b9
1 changed files with 4 additions and 2 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue