Skip to content

Commit

Permalink
#27416 Building NPM package before publishing. Testing Jinja2 rendering.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Colina committed Jan 30, 2024
1 parent 5de9a83 commit add1eb1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cli-release-process.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
#
# - name: 'Restore Maven Repository'
# id: cache-maven
# uses: actions/cache@v3
# uses: actions/cache@v4
# with:
# path: ~/.m2/repository
# key: mavencore-${{ steps.get-date.outputs.date }}-${{ github.run_id }}
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
gu.cmd install native-image
- name: 'Cache Maven packages'
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand Down Expand Up @@ -256,12 +256,12 @@ jobs:
run: pip install jinja2-cli

- name: 'Render package.json template'
working-directory: ${{ github.workspace }}/tools/dotcms-cli/npm-package/
working-directory: ${{ github.workspace }}/tools/dotcms-cli/npm/
run: |
jinja2 package.json.seed -D packageName=${PACKAGE_NAME} packageVersion=${PACKAGE_VERSION} -o package.json
- name: 'Download all build artifacts'
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: artifacts
path: ${{ github.workspace }}/artifacts
Expand Down Expand Up @@ -302,7 +302,7 @@ jobs:
# echo "artifactsDir=${{ github.workspace }}/artifacts" >> "$GITHUB_ENV"
#
# - name: 'Download all build artifacts'
# uses: actions/download-artifact@v3
# uses: actions/download-artifact@v4
# with:
# name: artifacts
# path: ${{ github.workspace }}/artifacts
Expand All @@ -318,7 +318,7 @@ jobs:
# distribution: ${{ env.JAVA_DISTRO }}
#
# - name: 'Cache Maven packages'
# uses: actions/cache@v3
# uses: actions/cache@v4
# with:
# path: ~/.m2/repository
# key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand Down

0 comments on commit add1eb1

Please sign in to comment.