File tree 3 files changed +28
-0
lines changed
3 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 41
41
runs-on : ubuntu-latest
42
42
needs : discover-new-releases
43
43
steps :
44
+ - name : Checkout
45
+
46
+ with :
47
+ path : apache-atlas-compiled
48
+
44
49
- name : Download Apache Atlas ${{ matrix.version }}
45
50
id : download-atlas
46
51
run : |
51
56
gpg --verify apache-atlas.tar.gz.asc apache-atlas.tar.gz
52
57
tar zxf apache-atlas.tar.gz
53
58
59
+ - name : Patch Apache Atlas ${{ matrix.version }}
60
+ id : patch-atlas
61
+ run : |
62
+ ls -la
63
+ if [[ -f "apache-atlas-compiled/patches/${{ matrix.version }}.sh" ]]; then
64
+ apache-atlas-compiled/patches/${{ matrix.version }}.sh "$(pwd)/apache-atlas-sources-${{ matrix.version }}"
65
+ fi
66
+
54
67
- name : Set up JDK 1.8
55
68
56
69
with :
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ set -euxo pipefail
4
+
5
+ CURRENT_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
6
+
7
+ ATLAS_PATH=$1
8
+
9
+ patch --verbose " ${ATLAS_PATH} /pom.xml" " ${CURRENT_DIR} /2.3.0/pom.xml.patch"
Original file line number Diff line number Diff line change
1
+ 888a889,893
2
+ > <repository>
3
+ > <id>maven-restlet</id>
4
+ > <name>Public online Restlet repository</name>
5
+ > <url>https://maven.restlet.talend.com/</url>
6
+ > </repository>
You can’t perform that action at this time.
0 commit comments