-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (36 loc) · 1.11 KB
/
go.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Go-Build
env:
artifact_name: ecs2k8s
on:
pull_request:
workflow_call:
outputs:
artifact_name:
description: "The name of the artifact"
value: ${{ jobs.build.outputs.artifact_name }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- run: mkdir -p $RUNNER_TEMP/artifacts/
- name: Build macos
run: |
export GOOS=darwin
export GOARCH=amd64
go build -o $RUNNER_TEMP/artifacts/$GOOS-$GOARCH/${{ env.artifact_name }}
cd $RUNNER_TEMP/artifacts/
zip ${{ env.artifact_name }}-$GOOS-$GOARCH.zip $GOOS-$GOARCH/${{ env.artifact_name }}
- name: Build linux
run: |
export GOOS=linux
export GOARCH=amd64
go build -o $RUNNER_TEMP/artifacts/$GOOS-$GOARCH/${{ env.artifact_name }}
cd $RUNNER_TEMP/artifacts/
zip ${{ env.artifact_name }}-$GOOS-$GOARCH.zip $GOOS-$GOARCH/${{ env.artifact_name }}
outputs:
artifact_name: ${{ env.artifact_name }}