From dcb98aeac6434a7dc207ecceedec9ecd4ebed78d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20R=C3=A5dberg?= Date: Sat, 13 Jan 2024 18:48:11 +0100 Subject: [PATCH] test --- .github/workflows/firebase-release.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/firebase-release.yml b/.github/workflows/firebase-release.yml index 86e2de2..3ddb256 100644 --- a/.github/workflows/firebase-release.yml +++ b/.github/workflows/firebase-release.yml @@ -49,3 +49,12 @@ jobs: prerelease: true title: ${{ steps.version.outputs.version }} files: release_note.txt + + - name: Create Release + uses: ncipollo/release-action@v1.13.0 + with: + artifacts: 'path/to/artifact.tar.gz,another/path/to/artifact.txt' # Add your artifact paths + body: 'Release notes for version ${{ steps.version.outputs.version }}' # Customize your release notes + commit: ${{ github.sha }} # Use the commit hash of the current workflow run + tag: '${{ steps.version.outputs.version }}' # Specify the tag for the release + token: ${{ secrets.GITHUB_TOKEN }} # GitHub token for authentication