From 55be21e50cdd6f9a5348f866d594e70855b66e28 Mon Sep 17 00:00:00 2001 From: Mark Puha Date: Sun, 24 Sep 2023 17:20:25 +0200 Subject: [PATCH] fix workflow --- .github/workflows/windows-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows-build.yml b/.github/workflows/windows-build.yml index 12f2fbb..e3e3de2 100644 --- a/.github/workflows/windows-build.yml +++ b/.github/workflows/windows-build.yml @@ -21,7 +21,7 @@ jobs: uses: actions/checkout@v3 with: repository: amnezia-vpn/amnezia-wg-tools - ref: new_fields_to_config + ref: master path: windows/wireguard-tools-windows - name: 'Build WireGuard Tools binary' @@ -54,7 +54,7 @@ jobs: uses: actions/download-artifact@v2 - name: Setup | Checksums - run: for file in $(find ./ -name '*.dll' ); do openssl dgst -sha256 -r "$file" | awk '{print $1}' > "${file}.sha256"; done + run: for file in $(find ./ -name '*.exe' ); do openssl dgst -sha256 -r "$file" | awk '{print $1}' > "${file}.sha256"; done - name: Zip ALL run: for file in *; do zip -r ${file%.*}.zip $file; done