Skip to content

Commit

Permalink
Testing new_release
Browse files Browse the repository at this point in the history
  • Loading branch information
alanwilter committed Oct 24, 2023
1 parent b0e3636 commit 7f09237
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/check_acpype.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,14 @@ jobs:
# will only create a new release if the commit message is 'new_release' to master branch
if: github.ref == 'refs/heads/master' && contains(github.event.head_commit.message, 'new_release')
id: create_release
uses: elgohr/Github-Release-Action@v5
# uses: elgohr/Github-Release-Action@v5
uses: actions/create-release@v1
env:
# This token is provided by Actions, you do not need to create your own token
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
title: ${{ steps.date.outputs.date }}
# title: ${{ steps.date.outputs.date }}
tag_name: ${{ steps.date.outputs.date }}
release_name: Release ${{ steps.date.outputs.date }}
draft: false
prerelease: false

0 comments on commit 7f09237

Please sign in to comment.