Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish Release
name: Publish Release Legacy

on:
workflow_dispatch:
Expand All @@ -19,7 +19,7 @@ on:
description: 'Only run pre-release checks'

concurrency:
group: publish-release
group: publish-release-legacy
cancel-in-progress: false

jobs:
Expand Down Expand Up @@ -74,8 +74,10 @@ jobs:
cat changelog-current.md

- name: Set Version
env:
VERSION_INPUT: ${{ inputs.version }}
run: |
echo "GITHUB_TAG_VERSION=${{ inputs.version }}" >> ${GITHUB_ENV}
echo "GITHUB_TAG_VERSION=${VERSION_INPUT}" >> ${GITHUB_ENV}

- name: Create Release Tag
shell: bash
Expand Down Expand Up @@ -133,6 +135,6 @@ jobs:
run: sudo rm -rf * || echo "failed to cleanup workspace please investigate"

publish-typescript:
needs: publish-release
needs: publish-release-legacy
uses: ./.github/workflows/publish-typescript.yml
secrets: inherit
Loading