From aa3137c0a9a3c738cb8419b66b32dd6ad2214c65 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Tue, 11 Jan 2022 00:04:13 -0500 Subject: [PATCH] Update create_package.yml -Replace create_release.yml with common create_release action --- .github/workflows/create_package.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/create_package.yml b/.github/workflows/create_package.yml index 77b40cb1..f38a11e3 100644 --- a/.github/workflows/create_package.yml +++ b/.github/workflows/create_package.yml @@ -87,7 +87,9 @@ jobs: name: sunshine-AppImage path: artifacts/ - name: Create Release - uses: ./.github/workflows/create_release.yml + uses: SunshineStream/.github/actions/create_release + with: + token: ${{ secrets.GITHUB_TOKEN }} build_linux: @@ -125,7 +127,9 @@ jobs: name: sunshine-${{ matrix.distro }} path: artifacts/ - name: Create Release - uses: ./.github/workflows/create_release.yml + uses: SunshineStream/.github/actions/create_release + with: + token: ${{ secrets.GITHUB_TOKEN }} build_win: name: Windows @@ -182,4 +186,6 @@ jobs: name: sunshine-${{ runner.os }} path: artifacts/ - name: Create Release - uses: ./.github/workflows/create_release.yml + uses: SunshineStream/.github/actions/create_release + with: + token: ${{ secrets.GITHUB_TOKEN }}