Commit 8e40c6a 1 parent 4a2eed0 commit 8e40c6a Copy full SHA for 8e40c6a
File tree 2 files changed +33
-0
lines changed
2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Artifactory
2
+
3
+ on :
4
+ push :
5
+ tags : ['[0-9]+.[0-9]+.[0-9]+']
6
+
7
+ env :
8
+ DEVELOPER_DIR : /Applications/Xcode_14.3.app/Contents/Developer
9
+
10
+ jobs :
11
+ artifactory :
12
+ name : Artifactory
13
+ runs-on : macos-13
14
+ concurrency :
15
+ group : ${{ github.ref_name }}
16
+ cancel-in-progress : true
17
+ steps :
18
+ - name : Install dependencies
19
+ run : brew install jfrog-cli
20
+ - name : Checkout source
21
+ uses : actions/checkout@v3
22
+ - name : Archive
23
+ run : tar -czf "CollectionBuilders-${GITHUB_REF_NAME}.tar.gz" Sources
24
+ - name : Upload
25
+ run : >
26
+ jf rt u
27
+ --url="https://tinder.jfrog.io/artifactory"
28
+ --access-token="${{ secrets.ARTIFACTORY_ACCESS_TOKEN }}"
29
+ --flat="true"
30
+ "CollectionBuilders-${GITHUB_REF_NAME}.tar.gz"
31
+ "swift-package-releases/CollectionBuilders/"
Original file line number Diff line number Diff line change 1
1
[ ![ Swift] ( https://github.com/Tinder/CollectionBuilders/actions/workflows/swift.yml/badge.svg?event=push )] ( https://github.com/Tinder/CollectionBuilders/actions/workflows/swift.yml )
2
2
  ;
3
3
[ ![ Bazel] ( https://github.com/Tinder/CollectionBuilders/actions/workflows/bazel.yml/badge.svg?event=push )] ( https://github.com/Tinder/CollectionBuilders/actions/workflows/bazel.yml )
4
+   ;
5
+ [ ![ Artifactory] ( https://github.com/Tinder/CollectionBuilders/actions/workflows/artifactory.yml/badge.svg?event=push )] ( https://github.com/Tinder/CollectionBuilders/actions/workflows/artifactory.yml )
4
6
5
7
# Collection Builders
6
8
You can’t perform that action at this time.
0 commit comments