mirror of
https://github.com/ValdikSS/GoodbyeDPI.git
synced 2026-09-12 18:49:58 +05:00
Fix grammar error in README and YAML syntax errors in workflow
This commit corrects a grammar error in the README documentation and fixes GitHub Actions workflow environment variable references that had extra spaces preventing proper variable resolution.
This commit is contained in:
parent
754ff6ff06
commit
f593a276f9
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
@ -36,17 +36,17 @@ jobs:
|
||||
id: windivert-cache
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ${{ env. WINDIVERT_NAME }}
|
||||
key: ${{ env. WINDIVERT_SHA256 }}
|
||||
path: ${{ env.WINDIVERT_NAME }}
|
||||
key: ${{ env.WINDIVERT_SHA256 }}
|
||||
|
||||
- name: Download WinDivert from the website
|
||||
if: steps.windivert-cache.outputs.cache-hit != 'true'
|
||||
run: >
|
||||
wget ${{ env. WINDIVERT_URL }} &&
|
||||
(echo ${{ env. WINDIVERT_SHA256 }} ${{ env. WINDIVERT_NAME }} | sha256sum -c)
|
||||
wget ${{ env.WINDIVERT_URL }} &&
|
||||
(echo ${{ env.WINDIVERT_SHA256 }} ${{ env.WINDIVERT_NAME }} | sha256sum -c)
|
||||
|
||||
- name: Unpack WinDivert
|
||||
run: unzip ${{ env. WINDIVERT_NAME }}
|
||||
run: unzip ${{ env.WINDIVERT_NAME }}
|
||||
|
||||
- name: Compile x86_64
|
||||
run: >
|
||||
|
||||
@ -135,7 +135,7 @@ The program loads WinDivert driver which uses Windows Filtering Platform to set
|
||||
|
||||
# How to build from source
|
||||
|
||||
This project can be build using **GNU Make** and [**mingw**](https://mingw-w64.org). The only dependency is [WinDivert](https://github.com/basil00/Divert).
|
||||
This project can be built using **GNU Make** and [**mingw**](https://mingw-w64.org). The only dependency is [WinDivert](https://github.com/basil00/Divert).
|
||||
|
||||
To build x86 exe run:
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user