Skip to content

Feature: add PTR domain name resolution #102

Feature: add PTR domain name resolution

Feature: add PTR domain name resolution #102

Workflow file for this run

name: Release
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- name: Setup Go
uses: actions/setup-go@v5
with:
check-latest: true
go-version: '1.21'
- name: Check out code
uses: actions/checkout@v4
- name: Cache go module
uses: actions/cache@v4
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Get dependencies, run test
run: |
go test ./...
- name: Build
env:
NAME: clash
BINDIR: bin
run: |
make build_dep
make -j releases
- name: Upload Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: build/releases/*
draft: false