Skip to content
This repository was archived by the owner on Jul 22, 2022. It is now read-only.

Commit 291fa1e

Browse files
Create go.yml
1 parent 43fbf13 commit 291fa1e

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/go.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Go
2+
on: [push]
3+
jobs:
4+
5+
build:
6+
name: Build
7+
runs-on: ubuntu-latest
8+
steps:
9+
10+
- name: Set up Go 1.13
11+
uses: actions/setup-go@v1
12+
with:
13+
go-version: 1.13
14+
id: go
15+
16+
- name: Check out code into the Go module directory
17+
uses: actions/checkout@v1
18+
19+
- name: Build
20+
run: make build
21+
22+
- name: Upload artifact
23+
uses: actions/[email protected]
24+
with:
25+
# Artifact name
26+
name: wsl2-ssh-pageant.exe
27+
# Directory containing files to upload
28+
path: wsl2-ssh-pageant.exe

0 commit comments

Comments
 (0)