Skip to content

upload bin,use ubuntu20 #5

upload bin,use ubuntu20

upload bin,use ubuntu20 #5

Workflow file for this run

name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'
- name: Build
run: go build -v -o output/go_webdav_client ./...
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
name: go_webdav_client-build
path: output/go_webdav_client # 指定要上传的编译文件路径