Skip to content

Commit 6ab1470

Browse files
committed
Rename artifact & set concurrency
1 parent a0745cf commit 6ab1470

File tree

4 files changed

+13
-1
lines changed

4 files changed

+13
-1
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
- '*-snapshot'
88
pull_request:
99

10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
12+
cancel-in-progress: true
13+
1014
env:
1115
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
1216

.github/workflows/install-execute.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ on:
99
schedule:
1010
- cron: '24 * * * *'
1111

12+
concurrency:
13+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
14+
cancel-in-progress: true
15+
1216
jobs:
1317
test-unix:
1418
name: "Testing ${{ matrix.version }} on ${{ matrix.os }}"

.github/workflows/run-tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
branches:
77
- master
88

9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
11+
cancel-in-progress: true
12+
913
env:
1014
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
1115

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>io.simplelocalize</groupId>
6-
<artifactId>cli</artifactId>
6+
<artifactId>simplelocalize-cli</artifactId>
77
<version>2.6.0</version>
88
<packaging>jar</packaging>
99
<name>simplelocalize-cli</name>

0 commit comments

Comments
 (0)