We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c67416 commit fa6dbd5Copy full SHA for fa6dbd5
.github/workflows/train_and_release.yml
@@ -19,7 +19,7 @@ jobs:
19
20
steps:
21
- name: Checkout repository
22
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
23
24
- name: Set up Python 3.9
25
uses: actions/setup-python@v4
@@ -31,6 +31,9 @@ jobs:
31
python -m pip install --upgrade pip
32
pip install -r requirements.txt
33
34
+ - name: Install jq
35
+ run: sudo apt-get install -y jq
36
+
37
- name: Build Docker image
38
run: docker build -t $DOCKER_IMAGE .
39
@@ -59,7 +62,7 @@ jobs:
59
62
tar -czvf ./$RELEASE_DIR/$RELEASE_NAME.tar.gz -C ./$RELEASE_DIR/$RELEASE_NAME .
60
63
61
64
- name: Upload artifact
- uses: actions/upload-artifact@v3
65
+ uses: actions/upload-artifact@v4
66
with:
67
name: model-release
68
path: ./$RELEASE_DIR/*.tar.gz
0 commit comments