From 68375e2deecf38a173cb43e6f1ff0fb47fbc0f48 Mon Sep 17 00:00:00 2001 From: Chris Rizzitello Date: Tue, 21 Feb 2023 15:52:04 -0500 Subject: [PATCH] Switch Deployment action --- .github/workflows/build.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 51807e881..178d5703a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -225,21 +225,21 @@ jobs: uses: actions/download-artifact@v3 - name: Deploy Continuous if: github.ref == 'refs/heads/master' - uses: "marvinpinto/action-automatic-releases@latest" + uses: softprops/action-gh-release@v1 with: - repo_token: "${{ secrets.DEPLOYTOKEN }}" - automatic_release_tag: "continuous" + token: "${{ secrets.DEPLOYTOKEN }}" + tag_name: "continuous" prerelease: false - title: "Continuous Build" + name: "Continuous Build" files: | artifact/* ff7tk-container-artifact/* debian-artifacts/* - name: Deploy Release - if: contains(github.ref, '/tags/v') - uses: "marvinpinto/action-automatic-releases@latest" + if: contains(github.ref, 'tags/v') + uses: softprops/action-gh-release@v1 with: - repo_token: "${{ secrets.DEPLOYTOKEN }}" + token: "${{ secrets.DEPLOYTOKEN }}" prerelease: false files: | artifact/*