Skip to content

Commit

Permalink
.github/workflows/production.yml: adding auto release
Browse files Browse the repository at this point in the history
  • Loading branch information
g3rhard committed Apr 21, 2024
1 parent 28157f2 commit ce50547
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,18 @@ jobs:
tags: ${{ github.repository }}:${{ env.DATE }}-${{ github.ref_name }}
platforms: linux/amd64,linux/arm64

- name: Create Release
uses: actions/create-release@v1
if: success()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref_name }}-${{ env.DATE }}
release_name: Release ${{ github.ref_name }}-${{ env.DATE }}
draft: false
prerelease: false
generate_release_notes: true

- name: Send Discord notification
uses: sarisia/actions-status-discord@6712a17f7d0531d44cd42ca2a878b0bdfd07b62a # v1
if: always()
Expand Down

0 comments on commit ce50547

Please sign in to comment.