Skip to content

Commit

Permalink
Merge pull request #600 from bitmovin/feature/fix-release-workflow
Browse files Browse the repository at this point in the history
Fix failing release workflow
  • Loading branch information
mukulmishra18 authored Jan 3, 2024
2 parents c59dee7 + 66876c0 commit f8f1e04
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/tag-release-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ jobs:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: develop

- name: Install dependencies
run: npm ci

Expand All @@ -30,7 +35,7 @@ jobs:
with:
script: |
const { defineReleaseVersion } = require('./.github/scripts/defineVersion.js')
return defineReleaseVersion({core}, 'minor', undefined, "${{ steps.define-package-json-version.outputs.packageJsonVersion }}" )
return defineReleaseVersion({core}, 'minor', "${{ steps.define-package-json-version.outputs.packageJsonVersion }}" )
- name: Bump package.json version
run: |
Expand Down

0 comments on commit f8f1e04

Please sign in to comment.