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

Commit 7256f12

Browse files
authored
Add Packer Config (#700)
1 parent 6921b8e commit 7256f12

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

ci/pack.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env bash
2+
3+
set -e -u -o -x pipefail
4+
5+
cd "$(dirname "$0")/../"
6+
7+
# Get shared CI
8+
ci/bootstrap.sh
9+
10+
dotnet run -p ./.shared-ci/tools/Packer/Packer.csproj

packer.config.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"package_name": "gdk-for-unity",
3+
"version": "0.1.3",
4+
"git_packages": [
5+
{
6+
"clone_url": "[email protected]:spatialos/gdk-for-unity.git",
7+
"clone_dir" : "gdk-for-unity",
8+
"exclude_paths": [
9+
".git",
10+
".github",
11+
"ci",
12+
"scripts",
13+
"test-project"
14+
]
15+
}
16+
]
17+
}

0 commit comments

Comments
 (0)