Skip to content

Commit

Permalink
Remove tagging
Browse files Browse the repository at this point in the history
  • Loading branch information
peb-adr committed Aug 25, 2023
1 parent ba6a62b commit c0d1a1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/release-create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ on:
branch:
type: string
default: main
tag:
type: string
default: dev
title:
type: string
default: Development Build
Expand Down Expand Up @@ -37,7 +34,6 @@ jobs:
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "${{ inputs.tag }}"
prerelease: "${{ inputs.prerelease }}"
title: "${{ inputs.title }}"
files: |
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/release-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,13 @@ jobs:
uses: ./.github/workflows/release-create.yml
with:
branch: "${{ github.event.client_payload.branch }}"
tag: "${{ github.event.client_payload.version }}"
title: Stable Build
title: "Stable Build (${{ github.event.client_payload.version }})"
prerelease: false
release-stable-latest:
name: "Create GitHub Release (latest) and upload binary"
if: startsWith(github.event.client_payload.branch, 'stable/4')
uses: ./.github/workflows/release-create.yml
with:
branch: "${{ github.event.client_payload.branch }}"
tag: latest
title: Stable Build
title: "Stable Build (latest)"
prerelease: false

0 comments on commit c0d1a1a

Please sign in to comment.