-
-
Notifications
You must be signed in to change notification settings - Fork 16
35 lines (28 loc) · 602 Bytes
/
ci.yml
File metadata and controls
35 lines (28 loc) · 602 Bytes
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
# This workflow will build ccu-jack
name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22.x'
- name: Build
run: |
cd build
go run .
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
path: |
ccu-jack-*.tar.gz
ccu-jack-*.zip
name: ccu-jack-${{ github.sha }}
retention-days: 30