[GH-ISSUE #2876] [Question] How to build and sign for windows #2293

Closed
opened 2026-05-05 13:28:51 -06:00 by gitea-mirror · 2 comments
Owner

Originally created by @paivaric on GitHub (Mar 29, 2022).
Original GitHub issue: https://github.com/fatedier/frp/issues/2876

Describe the feature request

I'm having trouble with anti-virus and I want to build and sign using my certificate.
How to do it?

Describe alternatives you've considered

No response

Affected area

  • Docs
  • Installation
  • Performance and Scalability
  • Security
  • User Experience
  • Test and Release
  • Developer Infrastructure
  • Client Plugin
  • Server Plugin
  • Extensions
  • Others
Originally created by @paivaric on GitHub (Mar 29, 2022). Original GitHub issue: https://github.com/fatedier/frp/issues/2876 ### Describe the feature request I'm having trouble with anti-virus and I want to build and sign using my certificate. How to do it? ### Describe alternatives you've considered _No response_ ### Affected area - [X] Docs - [ ] Installation - [ ] Performance and Scalability - [ ] Security - [ ] User Experience - [ ] Test and Release - [X] Developer Infrastructure - [ ] Client Plugin - [ ] Server Plugin - [ ] Extensions - [ ] Others
gitea-mirror 2026-05-05 13:28:51 -06:00
Author
Owner

@Becods commented on GitHub (Mar 29, 2022):

Reference workflows file

  binary:
    name: Build Golang project
    runs-on: ubuntu-latest
    steps:
      - name: Set up Go 1.x
        uses: actions/setup-go@v2
        with:
          go-version: 1.18

      - run: |
          # https://github.com/actions/setup-go/issues/107
          cp -f `which go` /usr/bin/go
      - run: go version

      - name: Check out code into the Go module directory
        uses: actions/checkout@v2

      - name: Build
        run: make build

      - name: Archive artifacts for frpc
        uses: actions/upload-artifact@v1
        with:
          name: frpc
          path: bin/frpc

      - name: Archive artifacts for frps
        uses: actions/upload-artifact@v1
        with:
          name: frps
          path: bin/frps
<!-- gh-comment-id:1081785111 --> @Becods commented on GitHub (Mar 29, 2022): Reference workflows file ``` binary: name: Build Golang project runs-on: ubuntu-latest steps: - name: Set up Go 1.x uses: actions/setup-go@v2 with: go-version: 1.18 - run: | # https://github.com/actions/setup-go/issues/107 cp -f `which go` /usr/bin/go - run: go version - name: Check out code into the Go module directory uses: actions/checkout@v2 - name: Build run: make build - name: Archive artifacts for frpc uses: actions/upload-artifact@v1 with: name: frpc path: bin/frpc - name: Archive artifacts for frps uses: actions/upload-artifact@v1 with: name: frps path: bin/frps ```
Author
Owner

@github-actions[bot] commented on GitHub (Apr 29, 2022):

Issues go stale after 30d of inactivity. Stale issues rot after an additional 7d of inactivity and eventually close.

<!-- gh-comment-id:1112776518 --> @github-actions[bot] commented on GitHub (Apr 29, 2022): Issues go stale after 30d of inactivity. Stale issues rot after an additional 7d of inactivity and eventually close.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: github-starred/frp#2293
No description provided.