Skip to content

Commit

Permalink
fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
sethkfman committed Jun 28, 2024
1 parent 65b1417 commit 7a156d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/create-release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,8 @@ jobs:
with:
node-version-file: '.nvmrc'
cache: yarn

- name: Install dependencies
run: yarn --immutable
# - name: Get Node.js version
# id: nvm
# run: echo "NODE_VERSION=$(cat .nvmrc)" >> "$GITHUB_OUTPUT"
# - uses: actions/setup-node@v3
# with:
# node-version: ${{ steps.nvm.outputs.NODE_VERSION }}
- name: Set Versions
id: set-versions
shell: bash
Expand All @@ -60,4 +53,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
.github/scripts/create-release-pr.sh ${{ github.event.inputs.previous-version-tag }} ${{ github.event.inputs.semver-version }}
.scripts/create-release-pr.sh ${{ github.event.inputs.previous-version-tag }} ${{ github.event.inputs.semver-version }}
4 changes: 2 additions & 2 deletions scripts/create-release-pr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ gh pr create \
--body "${RELEASE_BODY}" \
--head "${RELEASE_BRANCH_NAME}";

node .github/scripts/generate-rc-commits.mjs "${PREVIOUS_VERSION}" "${RELEASE_BRANCH_NAME}"
node .scripts/generate-rc-commits.mjs "${PREVIOUS_VERSION}" "${RELEASE_BRANCH_NAME}"

.github/scripts/changelog-csv.sh
.scripts/changelog-csv.sh

git commit -am "updated changelog and generated feature test plan"

Expand Down

0 comments on commit 7a156d6

Please sign in to comment.