2024-09-01 11:01:45 +00:00
|
|
|
# This workflow will build a golang project
|
|
|
|
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
|
|
|
|
|
2024-09-01 13:36:17 +00:00
|
|
|
name: Build
|
2024-09-01 11:01:45 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2024-09-01 12:43:10 +00:00
|
|
|
tags: 'v*'
|
2024-09-01 11:01:45 +00:00
|
|
|
|
2024-09-01 11:19:16 +00:00
|
|
|
env:
|
|
|
|
GOOS: windows
|
|
|
|
GOARCH: amd64
|
2024-09-01 11:01:45 +00:00
|
|
|
|
2024-09-01 11:19:16 +00:00
|
|
|
jobs:
|
2024-09-01 11:01:45 +00:00
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
2024-09-01 11:53:50 +00:00
|
|
|
|
2024-09-01 11:01:45 +00:00
|
|
|
steps:
|
2024-09-01 12:43:10 +00:00
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
2024-09-01 11:53:50 +00:00
|
|
|
|
2024-09-01 12:43:10 +00:00
|
|
|
- name: Get GoLang version
|
|
|
|
run: sed -En 's/^go (.*)$/GO_VERSION=\1/p' go.mod >> $GITHUB_ENV
|
|
|
|
|
2024-09-01 11:01:45 +00:00
|
|
|
- name: Set up Go
|
|
|
|
uses: actions/setup-go@v4
|
|
|
|
with:
|
|
|
|
go-version: "${{ env.GO_VERSION }}"
|
2024-09-01 11:53:50 +00:00
|
|
|
|
2024-09-01 11:01:45 +00:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
go get .
|
|
|
|
|
|
|
|
- name: Build project
|
2024-09-01 11:53:50 +00:00
|
|
|
run: go build -o build/ -v ./...
|
2024-09-01 11:01:45 +00:00
|
|
|
|
2024-09-01 13:36:17 +00:00
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: ProxySwitcher
|
|
|
|
path: build/*
|