Add initial support and docs for Windows (#132)

- Add initial support for Windows
- Update docs
- Fix issue with openvpn 2.6 data-ciphers
This commit is contained in:
Dave Gallant
2024-07-28 21:09:57 -04:00
committed by GitHub
parent 885f73db1c
commit 3e819c5c55
7 changed files with 47 additions and 67 deletions

30
.github/workflows/release.yml vendored Normal file
View File

@@ -0,0 +1,30 @@
name: goreleaser
on:
push:
tags:
- '*'
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
version: '~> v2'
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_GITHUB_TOKEN }}
CGO_ENABLED: 0