diff --git a/.github/workflows/draft_new_hotfix.yml b/.github/workflows/draft_new_hotfix.yml index de48932..acb5c55 100644 --- a/.github/workflows/draft_new_hotfix.yml +++ b/.github/workflows/draft_new_hotfix.yml @@ -14,6 +14,9 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Install Node modules + run: npm ci + - name: Create hotfix branch run: git checkout -b hotfix/${{ github.event.inputs.version }} diff --git a/.github/workflows/draft_new_release.yml b/.github/workflows/draft_new_release.yml index ee23976..56072d1 100644 --- a/.github/workflows/draft_new_release.yml +++ b/.github/workflows/draft_new_release.yml @@ -14,6 +14,9 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Install Node modules + run: npm ci + - name: Create release branch run: git checkout -b release/${{ github.event.inputs.version }}