New Github actions
This commit is contained in:
parent
cd28f79420
commit
41eb42c369
2 changed files with 90 additions and 13 deletions
36
.github/workflows/go.yml
vendored
36
.github/workflows/go.yml
vendored
|
@ -2,12 +2,11 @@ name: Go
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ main ]
|
branches: [ master ]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ main ]
|
branches: [ master ]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
build:
|
build:
|
||||||
name: Build
|
name: Build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -20,14 +19,27 @@ jobs:
|
||||||
|
|
||||||
- name: Check out code into the Go module directory
|
- name: Check out code into the Go module directory
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
- name: Get dependencies
|
fetch-depth: '0'
|
||||||
run: |
|
|
||||||
go get -v -t -d ./...
|
|
||||||
if [ -f Gopkg.toml ]; then
|
|
||||||
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
|
|
||||||
dep ensure
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: make compile
|
run: |
|
||||||
|
GOOS=linux make build
|
||||||
|
GOOS=darwin make build
|
||||||
|
GOOS=windows EXTENSION=.exe make build
|
||||||
|
|
||||||
|
- name: Install fpm
|
||||||
|
run: |
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install -y rpm ruby ruby-dev
|
||||||
|
sudo gem install fpm
|
||||||
|
|
||||||
|
- name: Package
|
||||||
|
run: make package-deb package-rpm
|
||||||
|
|
||||||
|
- name: Upload Artifact
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: dist
|
||||||
|
path: dist/*
|
||||||
|
retention-days: 14
|
65
.github/workflows/release.yml
vendored
Normal file
65
.github/workflows/release.yml
vendored
Normal file
|
@ -0,0 +1,65 @@
|
||||||
|
name: Release
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- 'v*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- name: Set up Go 1.x
|
||||||
|
uses: actions/setup-go@v2
|
||||||
|
with:
|
||||||
|
go-version: ^1.14
|
||||||
|
|
||||||
|
- name: Check out code into the Go module directory
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: '0'
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: |
|
||||||
|
GOOS=linux make build
|
||||||
|
GOOS=darwin make build
|
||||||
|
GOOS=windows EXTENSION=.exe make build
|
||||||
|
|
||||||
|
- name: Install fpm
|
||||||
|
run: |
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install -y rpm ruby ruby-dev
|
||||||
|
sudo gem install fpm
|
||||||
|
|
||||||
|
- name: Package
|
||||||
|
run: make package-deb package-rpm
|
||||||
|
|
||||||
|
- name: Create Release
|
||||||
|
id: create_release
|
||||||
|
uses: actions/create-release@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
tag_name: ${{ github.ref }}
|
||||||
|
release_name: Release ${{ github.ref }}
|
||||||
|
draft: false
|
||||||
|
prerelease: false
|
||||||
|
|
||||||
|
- name: Upload Release Asset
|
||||||
|
uses: actions/github-script@v2
|
||||||
|
with:
|
||||||
|
github-token: ${{secrets.GITHUB_TOKEN}}
|
||||||
|
script: |
|
||||||
|
const fs = require('fs').promises;
|
||||||
|
const upload_url = '${{ steps.create_release.outputs.upload_url }}';
|
||||||
|
for (let file of await fs.readdir('./dist')) {
|
||||||
|
console.log('uploading', file);
|
||||||
|
await github.repos.uploadReleaseAsset({
|
||||||
|
url: upload_url,
|
||||||
|
name: file,
|
||||||
|
data: await fs.readFile(`./dist/${file}`)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue