]> git.cameronkatri.com Git - trustcache.git/commitdiff
Fix workflows
authorCameron Katri <me@cameronkatri.com>
Tue, 14 Jun 2022 02:17:52 +0000 (22:17 -0400)
committerCameron Katri <me@cameronkatri.com>
Tue, 14 Jun 2022 02:17:52 +0000 (22:17 -0400)
.github/workflows/build.yml

index 61770c493bc04117deb85f88be0551e187dc4d9f..22ae1cbfd176d02436ecfc0b2791842e23213806 100644 (file)
@@ -96,12 +96,12 @@ jobs:
       run: |
         make -j$(nproc) \
           LDFLAGS="-static ${LDFLAGS}"
-        ${TRIPLE}-strip tc
+        ${TRIPLE}-strip trustcache
 
     - uses: actions/upload-artifact@v1
       with:
-        name: tc_linux_${{ env.ARCH }}
-        path: tc
+        name: trustcache_linux_${{ env.ARCH }}
+        path: trustcache
 
     - name: Upload Release Asset Linux
       uses: actions/upload-release-asset@v1
@@ -110,8 +110,8 @@ jobs:
         GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
       with:
         upload_url: ${{ github.event.release.upload_url }}
-        asset_path: tc
-        asset_name: tc_linux_${{ env.ARCH }}
+        asset_path: trustcache
+        asset_name: trustcache_linux_${{ env.ARCH }}
         asset_content_type: application/octet-stream
 
   build-macos:
@@ -137,12 +137,12 @@ jobs:
       run: |
         make -j$(sysctl -n hw.ncpu) \
           COMMONCRYPTO=1
-        strip tc
+        strip trustcache
 
     - uses: actions/upload-artifact@v1
       with:
-        name: tc_macos_${{ matrix.arch }}
-        path: tc
+        name: trustcache_macos_${{ matrix.arch }}
+        path: trustcache
 
     - name: Upload Release Asset Linux
       uses: actions/upload-release-asset@v1
@@ -151,6 +151,6 @@ jobs:
         GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
       with:
         upload_url: ${{ github.event.release.upload_url }}
-        asset_path: tc
-        asset_name: tc_macos_${{ matrix.arch }}
+        asset_path: trustcache
+        asset_name: trustcache_macos_${{ matrix.arch }}
         asset_content_type: application/octet-stream