Skip to content

Commit

Permalink
- revert to outdated action!
Browse files Browse the repository at this point in the history
  • Loading branch information
Ognian committed Dec 11, 2023
1 parent 3724bdb commit e3aa252
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/buildwithdocker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,23 +75,25 @@ jobs:

- name: Release if tagged
if: ${{startsWith(github.ref, 'refs/tags/v')}}
uses: "softprops/action-gh-release@v1"
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
generate_release_notes: true
files: |
build/sdmon-arm64.tar.gz
build/sdmon-armv7.tar.gz
build/sdmon-armv6.tar.gz
id: "automatic_releases_tagged"
- name: Release if prerelease
if: ${{startsWith(github.ref, 'refs/heads/master')}}
uses: "ncipollo/release-action@v1"
uses: "marvinpinto/action-automatic-releases@latest"
with:
allowUpdates: true
tag: "latest" # we are tagging the github repo (origin)
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
generateReleaseNotes: true
name: "Development Build"
artifacts: "build/sdmon-arm64.tar.gz,build/sdmon-armv7.tar.gz,build/sdmon-armv6.tar.gz"
title: "Development Build"
files: |
build/sdmon-arm64.tar.gz
build/sdmon-armv7.tar.gz
build/sdmon-armv6.tar.gz
id: "automatic_releases_not_tagged"

0 comments on commit e3aa252

Please sign in to comment.