diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 58cf1a6..bfc3592 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,7 +2,7 @@ name: Build on: push: - branches: [main] + branches: [main, dev] tags: ["*"] env: @@ -19,7 +19,7 @@ jobs: [windows-latest, windows], ] arch: [arm64, amd64, 386] - go-version: ["1.20"] + go-version: ["1.20.5"] exclude: - os: [macOS-latest, darwin] arch: 386 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3f14964..a26dbbc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,9 +2,9 @@ name: Test on: push: - branches: [main] + branches: [main, dev] pull_request: - branches: [main] + branches: [main, dev] jobs: govulncheck: @@ -20,7 +20,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v3 with: - go-version: "1.20" + go-version: "1.20.5" - name: Install govulncheck run: go install golang.org/x/vuln/cmd/govulncheck@latest @@ -39,7 +39,7 @@ jobs: [windows-latest, windows], ] arch: [amd64] - go-version: ["1.20"] + go-version: ["1.20.5"] runs-on: ${{ matrix.os[0] }} name: Test (go${{ matrix.go-version }}, ${{ matrix.os[1] }}, ${{ matrix.arch }}) defaults: diff --git a/README.md b/README.md index c79055d..0f2633e 100644 --- a/README.md +++ b/README.md @@ -34,13 +34,25 @@ export PASSWORD="your_password" cmd.exe: ``` set PASSWORD=your_password -bizip.exe --unzip --encrypted --input "inputs/image*.zip" --output output_file_path +bizip.exe --encrypted --unzip --input "inputs\image*.zip" --output output_file_path ``` PowerShell: ```powershell $env:PASSWORD = 'your_password' -.\bizip.exe --unzip --encrypted --input "inputs/image*.zip" --output output_file_path +.\bizip.exe --encrypted --unzip --input "inputs\image*.zip" --output output_file_path +``` + +## Without Encryption (Windows): + +cmd.exe: +``` +bizip.exe --unzip --input "inputs\image*.zip" --output output_file_path +``` + +PowerShell: +```powershell +.\bizip.exe --unzip --input "inputs\image*.zip" --output output_file_path ``` ## Flags