Skip to content

Commit 68375e2

Browse files
committed
Switch Deployment action
1 parent 192270e commit 68375e2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -225,21 +225,21 @@ jobs:
225225
uses: actions/download-artifact@v3
226226
- name: Deploy Continuous
227227
if: github.ref == 'refs/heads/master'
228-
uses: "marvinpinto/action-automatic-releases@latest"
228+
uses: softprops/action-gh-release@v1
229229
with:
230-
repo_token: "${{ secrets.DEPLOYTOKEN }}"
231-
automatic_release_tag: "continuous"
230+
token: "${{ secrets.DEPLOYTOKEN }}"
231+
tag_name: "continuous"
232232
prerelease: false
233-
title: "Continuous Build"
233+
name: "Continuous Build"
234234
files: |
235235
artifact/*
236236
ff7tk-container-artifact/*
237237
debian-artifacts/*
238238
- name: Deploy Release
239-
if: contains(github.ref, '/tags/v')
240-
uses: "marvinpinto/action-automatic-releases@latest"
239+
if: contains(github.ref, 'tags/v')
240+
uses: softprops/action-gh-release@v1
241241
with:
242-
repo_token: "${{ secrets.DEPLOYTOKEN }}"
242+
token: "${{ secrets.DEPLOYTOKEN }}"
243243
prerelease: false
244244
files: |
245245
artifact/*

0 commit comments

Comments
 (0)