Skip to content

Commit

Permalink
Update release action
Browse files Browse the repository at this point in the history
This switches our release action to an actively maintained action that
will continue to recieve future updates, as our old action was no longer
being maintained.

Signed-off-by: Ethan Dye <[email protected]>
  • Loading branch information
ecdye committed Jul 26, 2024
1 parent 22eec3a commit 9beab54
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,11 @@ jobs:

- name: Create release template
if: ${{ success() && github.ref_type == 'tag' && startsWith(github.ref_name, 'v') }}
uses: "marvinpinto/action-automatic-releases@latest"
uses: "softprops/action-gh-release@v2"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
title: "openHABian ${{ github.ref_name }}"
automatic_release_tag: "${{ github.ref_name }}"
name: "openHABian ${{ github.ref_name }}"
prerelease: false
draft: true
files: |
Expand Down

0 comments on commit 9beab54

Please sign in to comment.