-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (42 loc) · 1.21 KB
/
pre-release.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
name: pre-release
run-name: Building the project for Pre Release
on:
push:
branches: [main]
jobs:
pre-release:
name: "Pre Release"
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: "1.21.x"
- run: cd ${{ github.workspace }}
- run: ls -la
- run: |
gofmt -w .
git add .
git config --global user.name 'GitHub Autobot'
git config --global user.email '[email protected]'
git diff-index --quiet HEAD || git commit -am "gofmt checks" && git push
- name: Install dependencies
run: go get ./...
- name: Build
run: go build -v -o ./output/app
# - name: Test with the Go CLI
# run: go test
# - uses: actions/upload-artifact@v2
# with:
# name: app
# path: ./output/app
- uses: "marvinpinto/[email protected]"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: true
automatic_release_tag: latest
title: "Development Build"
files: |
LICENSE
./output/app