From 62ef46e85feeef9998281cea1801b0534d7d2c87 Mon Sep 17 00:00:00 2001 From: eyedeekay Date: Tue, 29 Apr 2025 22:44:18 -0400 Subject: [PATCH] use nicpollo instead of softprops --- .github/workflows/build-dendrite-demos.yml | 24 +++++++++++----------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build-dendrite-demos.yml b/.github/workflows/build-dendrite-demos.yml index ec745eb..57ed383 100644 --- a/.github/workflows/build-dendrite-demos.yml +++ b/.github/workflows/build-dendrite-demos.yml @@ -76,26 +76,26 @@ jobs: - name: Create nightly release if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' - uses: softprops/action-gh-release@v1 + uses: ncipollo/release-action@v1 with: name: "Dendrite Demo Commands (Nightly $(date +'%Y-%m-%d'))" - tag_name: "nightly-$(date +'%Y-%m-%d')" - files: | - ${{ env.BUILD_DIR }}/* - body_path: ${{ env.BUILD_DIR }}/build-info.txt + tag: "nightly-$(date +'%Y-%m-%d')" + artifacts: "${{ env.BUILD_DIR }}/*" + bodyFile: ${{ env.BUILD_DIR }}/build-info.txt prerelease: true - fail_on_unmatched_files: true + allowUpdates: false + removeArtifacts: false - name: Update latest release - uses: softprops/action-gh-release@v1 + uses: ncipollo/release-action@v1 with: name: "Dendrite Demo Commands (Latest)" - tag_name: "latest" - files: | - ${{ env.BUILD_DIR }}/* - body_path: ${{ env.BUILD_DIR }}/build-info.txt + tag: "latest" + artifacts: "${{ env.BUILD_DIR }}/*" + bodyFile: ${{ env.BUILD_DIR }}/build-info.txt prerelease: true - fail_on_unmatched_files: true + allowUpdates: true + removeArtifacts: true - name: Upload artifacts uses: actions/upload-artifact@v3