improving TLS impersonate #1417
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 🔨 Release Test | |
| on: | |
| pull_request: | |
| paths: | |
| - '**.go' | |
| - '**.mod' | |
| workflow_dispatch: | |
| jobs: | |
| release-test: | |
| runs-on: ubuntu-latest-16-cores | |
| steps: | |
| - name: "Check out code" | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: projectdiscovery/actions/setup/go@v1 | |
| - name: release test | |
| uses: goreleaser/goreleaser-action@v4 | |
| with: | |
| args: "release --clean --snapshot" | |
| version: latest | |
| workdir: . |