From fa8093a5f97784d77a768fc557be1a9cd973933b Mon Sep 17 00:00:00 2001 From: xvzc Date: Fri, 11 Mar 2022 11:32:44 +0900 Subject: [PATCH] update --- .github/workflows/release.yaml | 42 ---------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml deleted file mode 100644 index c5fa477..0000000 --- a/.github/workflows/release.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# on: -# push: -# branches: -# - "main" - -# jobs: -# linux: -# name: "Release" -# runs-on: "ubuntu-latest" - -# steps: -# # ... -# - name: "Build & test" -# run: | -# ls -al && pwd && ls -al .. && GOOS=linux GOARCH=amd64 go build ./cmd/... && tar -zcvf spoof-dpi-linux.tar.gz ./spoof-dpi -# - uses: "marvinpinto/action-automatic-releases@latest" -# with: -# repo_token: "${{ secrets.PERSONAL_TOKEN }}" -# automatic_release_tag: "latest" -# prerelease: true -# title: "Development Build" -# files: | -# *.tar.gz - -# .github/workflows/release.yaml - -on: - release: - types: [created] - -jobs: - release-linux-amd64: - name: release linux/amd64 - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: wangyoucao577/go-release-action@v1.25 - with: - project_path: ./... - github_token: ${{ secrets.PERSONAL_TOKEN }} - goos: linux - goarch: amd64