Skip to content

Commit 7cbd196

Browse files
committed
_g
1 parent 6f0265a commit 7cbd196

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/build.yaml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,14 @@ jobs:
4949
echo "DEBUG_ARTIFACT=$DEBUG_NAME" >> $GITHUB_ENV
5050
echo "RELEASE_ARTIFACT=$RELEASE_NAME" >> $GITHUB_ENV
5151
52-
- name: Upload built library as artifact
52+
- name: Upload Debug Artifact
5353
uses: actions/upload-artifact@v4
5454
with:
55-
name: ${{ env.artifact_path }}
55+
name: libsqlite3-debug
56+
path: ${{ env.DEBUG_ARTIFACT }}
57+
58+
- name: Upload Release Artifact
59+
uses: actions/upload-artifact@v4
60+
with:
61+
name: libsqlite3-release
62+
path: ${{ env.RELEASE_ARTIFACT }}

0 commit comments

Comments
 (0)