Merge pull request #6529 from nextcloud/renovate/stable30-nextcloud-a… #2482
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors | |
# SPDX-License-Identifier: AGPL-3.0-or-later | |
name: Update Node dist | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
# implemented since 28, once branched off, add your stable branch here | |
- main | |
- stable3* | |
- stable29 | |
- stable28 | |
concurrency: | |
group: update-node-dist-${{ github.head_ref || github.ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
update-node-dist: | |
runs-on: ubuntu-latest | |
environment: update-node-dist | |
steps: | |
- name: Checkout | |
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 | |
with: | |
token: ${{ secrets.BOT_GITHUB_TOKEN }} | |
- name: Read package.json node and npm engines version | |
uses: skjnldsv/read-package-engines-version-actions@8205673bab74a63eb9b8093402fd9e0e018663a1 # v2.1 | |
id: versions | |
with: | |
fallbackNode: '^20' | |
fallbackNpm: '^9' | |
- name: Set up node ${{ steps.versions.outputs.nodeVersion }} | |
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3 | |
with: | |
node-version: ${{ steps.versions.outputs.nodeVersion }} | |
- name: Set up npm ${{ steps.versions.outputs.npmVersion }} | |
run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}" | |
- name: Setup git | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "nextcloud-command" | |
- name: Get last commit message if it was not a recompile | |
id: last_commit | |
run: | | |
{ | |
echo 'MESSAGE<<EOF' | |
git log -1 --pretty=%s | grep -v '^chore(assets): recompile assets$' || test $? -eq 1 | |
echo 'EOF' | |
} >> $GITHUB_OUTPUT | |
- name: Install dependencies & build | |
if: steps.last_commit.outputs.MESSAGE != '' | |
env: | |
CYPRESS_INSTALL_BINARY: 0 | |
run: | | |
npm ci | |
npm run build --if-present | |
- name: Check webpack build changes | |
id: changes | |
continue-on-error: true | |
run: | | |
{ | |
echo 'CHANGED<<EOF' | |
git status --porcelain | |
echo 'EOF' | |
} >> "$GITHUB_OUTPUT" | |
- name: Add and commit | |
if: steps.changes.outputs.CHANGED != '' | |
run: | | |
git add --force js/ css/ | |
git commit --signoff -m 'chore(assets): recompile assets' | |
git push origin ${{ github.head_ref }} |