diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b932365..d76ba5d 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,12 +1,13 @@ # .github/workflows/release.yaml on: - release: - types: [created] + pull_request: + branches: + - main jobs: release-linux-amd64: - name: release linux/amd64 + name: Release runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -15,3 +16,4 @@ jobs: github_token: ${{ secrets.GITHUB_TOKEN }} goos: linux goarch: amd64 + build_command: "go build -o . github.com/xvzc/SpoofDPI/cmd/spoof-dpi && tar -zcvf spoof-dpi-osx.tar.gz ./spoof-dpi"