Skip to content

Commit e3aa252

Browse files
committed
- revert to outdated action!
1 parent 3724bdb commit e3aa252

1 file changed

Lines changed: 10 additions & 8 deletions

File tree

.github/workflows/buildwithdocker.yaml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -75,23 +75,25 @@ jobs:
7575

7676
- name: Release if tagged
7777
if: ${{startsWith(github.ref, 'refs/tags/v')}}
78-
uses: "softprops/action-gh-release@v1"
78+
uses: "marvinpinto/action-automatic-releases@latest"
7979
with:
80+
repo_token: "${{ secrets.GITHUB_TOKEN }}"
8081
prerelease: false
81-
generate_release_notes: true
8282
files: |
8383
build/sdmon-arm64.tar.gz
8484
build/sdmon-armv7.tar.gz
8585
build/sdmon-armv6.tar.gz
8686
id: "automatic_releases_tagged"
8787
- name: Release if prerelease
8888
if: ${{startsWith(github.ref, 'refs/heads/master')}}
89-
uses: "ncipollo/release-action@v1"
89+
uses: "marvinpinto/action-automatic-releases@latest"
9090
with:
91-
allowUpdates: true
92-
tag: "latest" # we are tagging the github repo (origin)
91+
repo_token: "${{ secrets.GITHUB_TOKEN }}"
92+
automatic_release_tag: "latest"
9393
prerelease: true
94-
generateReleaseNotes: true
95-
name: "Development Build"
96-
artifacts: "build/sdmon-arm64.tar.gz,build/sdmon-armv7.tar.gz,build/sdmon-armv6.tar.gz"
94+
title: "Development Build"
95+
files: |
96+
build/sdmon-arm64.tar.gz
97+
build/sdmon-armv7.tar.gz
98+
build/sdmon-armv6.tar.gz
9799
id: "automatic_releases_not_tagged"

0 commit comments

Comments
 (0)