We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f0265a commit 7cbd196Copy full SHA for 7cbd196
.github/workflows/build.yaml
@@ -49,7 +49,14 @@ jobs:
49
echo "DEBUG_ARTIFACT=$DEBUG_NAME" >> $GITHUB_ENV
50
echo "RELEASE_ARTIFACT=$RELEASE_NAME" >> $GITHUB_ENV
51
52
- - name: Upload built library as artifact
+ - name: Upload Debug Artifact
53
uses: actions/upload-artifact@v4
54
with:
55
- name: ${{ env.artifact_path }}
+ 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