-
Notifications
You must be signed in to change notification settings - Fork 2
80 lines (73 loc) · 2.16 KB
/
release-snapshots.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: Release Snapshots
on:
workflow_dispatch:
schedule:
- cron: '0 1 * * *'
jobs:
delete_old_snapshots:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Delete older snapshots
uses: smartsquaregmbh/delete-old-packages@v0.7.0
with:
organization: assimbly
type: maven
keep: 0
version-pattern: "^\\S+\\-SNAPSHOT$"
names: |
org.assimbly.custom-components
org.assimbly.smooksnoxml
org.assimbly.auth
org.assimbly.aggregate
org.assimbly.aleris
org.assimbly.amazon
org.assimbly.archive
org.assimbly.cookies
org.assimbly.csvtoxml
org.assimbly.docconverter
org.assimbly.edi
org.assimbly.edifact
org.assimbly.edifactcommon
org.assimbly.edifactdotweb
org.assimbly.edifactstandards
org.assimbly.encoder
org.assimbly.enrich
org.assimbly.exceltoxml
org.assimbly.flv
org.assimbly.fmuta
- name: Delete older snapshots 2
uses: smartsquaregmbh/delete-old-packages@v0.7.0
with:
organization: assimbly
type: maven
keep: 0
version-pattern: "^\\S+\\-SNAPSHOT$"
names: |
org.assimbly.formtoxml
org.assimbly.googledrive
org.assimbly.hl7
org.assimbly.mail
org.assimbly.multipart
org.assimbly.oauth2token
org.assimbly.pdf
org.assimbly.pdftotext
org.assimbly.replace
org.assimbly.sandbox
org.assimbly.simplereplace
org.assimbly.smb
org.assimbly.soap
org.assimbly.sql
org.assimbly.tenantvariables
org.assimbly.throttling
org.assimbly.xmltocsv
org.assimbly.xmltoexcel
org.assimbly.xmltojson
call-release-jars:
needs: delete_old_snapshots
uses: ./.github/workflows/release-jars.yml
secrets: inherit
with:
branch: 'develop'