Skip to content

Commit

Permalink
debuggin: workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
david-fischer committed Jan 18, 2021
1 parent 0c42f39 commit f08c6a5
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
workflow_dispatch:
# workflow_dispatch:

name: Upload Release Asset

Expand All @@ -12,17 +12,14 @@ jobs:
name: Upload Release Asset
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: test_version_4
release_name: Release test_version_4
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false

Expand Down

0 comments on commit f08c6a5

Please sign in to comment.