Skip to content
This repository was archived by the owner on Jan 5, 2023. It is now read-only.

Commit 59aa6ac

Browse files
committed
feat: action.yml
1 parent e3b486e commit 59aa6ac

File tree

2 files changed

+26
-76
lines changed

2 files changed

+26
-76
lines changed

_action.yml

Lines changed: 0 additions & 76 deletions
This file was deleted.

action.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: pom.xml Dependencies Updater
2+
description: If there is a newer version of the dependency in pom.xml, rewrite it to the latest version.
3+
branding:
4+
icon: thumbs-up
5+
color: orange
6+
inputs:
7+
pom-path:
8+
description: pom.xml path
9+
required: true
10+
ignore-packages:
11+
description: Update ignore package (Comma separated)
12+
required: false
13+
default: ''
14+
runs:
15+
using: composite
16+
17+
steps:
18+
- name: Install dependencies
19+
run: |
20+
yarn
21+
shell: bash
22+
23+
- name: Compile & Run
24+
run: |
25+
yarn build --target ${{ inputs.target }} --ignore-packages ${{ inputs.ignore-packages }}
26+
shell: bash

0 commit comments

Comments
 (0)