Skip to content

fix path

fix path #11

Workflow file for this run

name: Cross compile WireProxy
on:
workflow_dispatch:
push:
tags:
- "v*"
jobs:
WireProxy:
name: Cross compile WireProxy
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.26"
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --clean --config .github/wireproxy-releaser.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}