mirror of
https://hub.gitmirror.com/https://github.com/gradle/actions.git
synced 2025-10-27 07:59:58 +08:00
Bumps the github-actions group with 2 updates in the / directory: [actions/setup-node](https://github.com/actions/setup-node) and [github/codeql-action](https://github.com/github/codeql-action). Bumps the github-actions group with 1 update in the /.github/actions/build-dist directory: [actions/setup-node](https://github.com/actions/setup-node). Updates `actions/setup-node` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](a0853c2454...2028fbc5c2) Updates `github/codeql-action` from 4.30.8 to 4.30.9 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](f443b600d9...16140ae1a1) Updates `actions/setup-node` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](a0853c2454...2028fbc5c2) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: 4.30.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
30 lines
822 B
YAML
30 lines
822 B
YAML
name: 'Build and upload distribution'
|
|
# Builds the action distribution an uploads as an artifact for later download
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
|
|
with:
|
|
node-version: 24
|
|
cache: npm
|
|
cache-dependency-path: sources/package-lock.json
|
|
- name: Build distribution
|
|
shell: bash
|
|
run: |
|
|
npm -v
|
|
node -v
|
|
npm install
|
|
npm run build
|
|
working-directory: sources
|
|
|
|
- name: Copy the generated sources/dist directory to the top-level dist
|
|
shell: bash
|
|
run: |
|
|
cp -r sources/dist .
|
|
|
|
- name: Upload distribution
|
|
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
|
with:
|
|
name: dist
|
|
path: dist/
|