Skip to content

transport: support external proxy #94

transport: support external proxy

transport: support external proxy #94

Workflow file for this run

name: CI
on:
push:
paths-ignore:
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions
- "docs/**"
- "**.md"
- "**.txt"
- "LICENSE"
pull_request:
paths-ignore:
- "docs/**"
- "**.md"
- "**.txt"
- "LICENSE"
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
include:
- platform: ubuntu-latest
release_command: ./script/release.sh
- platform: macos-latest
release_command: ./script/release.sh
- platform: windows-latest
release_command: pwsh -NoProfile -NoLogo -ExecutionPolicy unrestricted -File "./script/release.ps1"
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: "stable"
- name: Build
run: ${{ matrix.release_command }}
- name: Upload release
uses: svenstaro/upload-release-action@v2
if: startsWith(github.ref, 'refs/tags/')
with:
file_glob: true
file: out/*
tag: ${{ github.ref }}
repo_token: ${{ secrets.GITHUB_TOKEN }}
overwrite: true