release v0.3.8 #5
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| permissions: | |
| contents: write | |
| jobs: | |
| docker: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Log in to Docker Hub | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - name: Extract metadata | |
| id: meta | |
| uses: docker/metadata-action@v5 | |
| with: | |
| images: hightemp/https_proxy | |
| tags: | | |
| type=semver,pattern={{version}} | |
| type=semver,pattern={{major}}.{{minor}} | |
| type=semver,pattern={{major}} | |
| type=raw,value=latest | |
| - name: Build and push | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: . | |
| platforms: linux/amd64,linux/arm64 | |
| push: true | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| - name: Update Docker Hub description | |
| uses: peter-evans/dockerhub-description@v4 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| repository: hightemp/https_proxy | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| - name: Build linux/amd64 | |
| env: | |
| CGO_ENABLED: 0 | |
| GOOS: linux | |
| GOARCH: amd64 | |
| run: | | |
| go build -ldflags="-s -w" -o https_proxy_linux_amd64 main.go | |
| - name: Build linux/arm64 | |
| env: | |
| CGO_ENABLED: 0 | |
| GOOS: linux | |
| GOARCH: arm64 | |
| run: | | |
| go build -ldflags="-s -w" -o https_proxy_linux_arm64 main.go | |
| - name: Build darwin/amd64 | |
| env: | |
| CGO_ENABLED: 0 | |
| GOOS: darwin | |
| GOARCH: amd64 | |
| run: | | |
| go build -ldflags="-s -w" -o https_proxy_darwin_amd64 main.go | |
| - name: Build darwin/arm64 | |
| env: | |
| CGO_ENABLED: 0 | |
| GOOS: darwin | |
| GOARCH: arm64 | |
| run: | | |
| go build -ldflags="-s -w" -o https_proxy_darwin_arm64 main.go | |
| - name: Build windows/amd64 | |
| env: | |
| CGO_ENABLED: 0 | |
| GOOS: windows | |
| GOARCH: amd64 | |
| run: | | |
| go build -ldflags="-s -w" -o https_proxy_windows_amd64.exe main.go | |
| - name: Build windows/arm64 | |
| env: | |
| CGO_ENABLED: 0 | |
| GOOS: windows | |
| GOARCH: arm64 | |
| run: | | |
| go build -ldflags="-s -w" -o https_proxy_windows_arm64.exe main.go | |
| - name: Create Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| generate_release_notes: true | |
| files: | | |
| https_proxy_linux_amd64 | |
| https_proxy_linux_arm64 | |
| https_proxy_darwin_amd64 | |
| https_proxy_darwin_arm64 | |
| https_proxy_windows_amd64.exe | |
| https_proxy_windows_arm64.exe | |
| config.example.yaml |