Skip to content

Commit 9d3c4a2

Browse files
committed
feat: implement artifact_builder submodule
Signed-off-by: Emanuel Calvo <3manuek@gmail.com>
1 parent 1afbf6c commit 9d3c4a2

File tree

12 files changed

+18
-153
lines changed

12 files changed

+18
-153
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,13 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: checkout repo content
13-
uses: actions/checkout@v2
14-
13+
uses: actions/checkout@v3
14+
with:
15+
submodules: recursive
16+
- name: Git Submodule Update
17+
run: |
18+
git submodule update --remote --recursive
19+
1520
- name: setup python
1621
uses: actions/setup-python@v4
1722
with:

.github/workflows/release.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,13 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: checkout repo content
13-
uses: actions/checkout@v2 # checkout the repository content
13+
uses: actions/checkout@v3
14+
with:
15+
submodules: recursive
16+
17+
- name: Git Submodule Update
18+
run: |
19+
git submodule update --remote --recursive
1420
1521
- name: setup python
1622
uses: actions/setup-python@v4

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "artifact_builder"]
2+
path = artifact_builder
3+
url = git@github.com:viadb/artifact_builder.git

artifact_builder

Submodule artifact_builder added at 14fa779

artifact_builder/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

artifact_builder/Dockerfile

Lines changed: 0 additions & 6 deletions
This file was deleted.

artifact_builder/README.md

Lines changed: 0 additions & 28 deletions
This file was deleted.

artifact_builder/__init__.py

Whitespace-only changes.

artifact_builder/__main__.py

Lines changed: 0 additions & 53 deletions
This file was deleted.

artifact_builder/filemap.py

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)