goflow2: use slog instead of logrus (#199) #40
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ^1.21 | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v1 | |
with: | |
fetch-depth: 0 | |
- name: Install fpm | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y rpm ruby ruby-dev | |
sudo gem install fpm | |
- name: Build | |
run: | | |
export VERSION=$(git describe --tags --abbrev=0 HEAD) | |
GOOS=linux make build | |
GOOS=darwin make build | |
GOOS=windows EXTENSION=.exe make build | |
make package-deb package-rpm | |
ARCH=arm64 GOARCH=arm64 GOOS=linux make build | |
ARCH=arm64 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}`) | |
}); | |
} | |