Skip to content

Commit 6324996

Browse files
committed
fix: compile file before uploading
1 parent 6ee6557 commit 6324996

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/master-ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,14 @@ jobs:
6161
steps:
6262
- name: Check out code
6363
uses: actions/checkout@v3
64+
- name: Install Go
65+
uses: actions/setup-go@v4
66+
with:
67+
go-version: stable
68+
- name: Install Go Modules
69+
run: go mod download
70+
- name: Build
71+
run: go build -o mtafoubs
6472
- name: Create and Push Tag
6573
env:
6674
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)