-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (37 loc) · 955 Bytes
/
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
on:
push:
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
- name: SetupGLFW
run: sudo apt install -y libgl1-mesa-dev xorg-dev
- name: Build
run: go build -o bvgeditor -v ./...
- name: Test
run: go test -v ./...
- name: Get current time
uses: srfrnk/current-time@master
id: current-time
with:
format: DD-MM-YYYY
- name: Upload APK Files to Release
uses: softprops/action-gh-release@v1
with:
name: "Auto Build ${{ steps.current-time.outputs.formattedTime }}"
# tag_name: v0.0.1
prerelease: true
body: |
This is an Automatic Release by GitHub Actions.
files: |
./bvgeditor
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}