aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCameron Katri <me@cameronkatri.com>2022-06-13 22:17:52 -0400
committerCameron Katri <me@cameronkatri.com>2022-06-13 22:17:52 -0400
commit5c02858affbcccd66f1f994c5a8cc475ea503591 (patch)
treed986ad97e309ffc206c91350447c69cb6801d6a9
parent9c3635b6eeca14dea544c17fc0497bd205c20b92 (diff)
downloadtrustcache-5c02858affbcccd66f1f994c5a8cc475ea503591.tar.gz
trustcache-5c02858affbcccd66f1f994c5a8cc475ea503591.tar.zst
trustcache-5c02858affbcccd66f1f994c5a8cc475ea503591.zip
Fix workflows
-rw-r--r--.github/workflows/build.yml20
1 files changed, 10 insertions, 10 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 61770c4..22ae1cb 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -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