Skip to content

✅ test: fix unit tests error and update github actio… #21

✅ test: fix unit tests error and update github actio…

✅ test: fix unit tests error and update github actio… #21

Workflow file for this run

name: Tag-release
on:
push:
tags:
- v*
jobs:
release:
name: Release new version
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Go Faster
uses: WillAbides/[email protected]
timeout-minutes: 3
with:
go-version: 1.18
- name: Setup ENV
# https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-commands-for-github-actions#setting-an-environment-variable
run: |
echo "RELEASE_TAG=${GITHUB_REF:10}" >> $GITHUB_ENV
echo "RELEASE_NAME=$GITHUB_WORKFLOW" >> $GITHUB_ENV
- name: Build bin package
run: make build-all
- name: Generate changelog
run: |
go install ./cmd/chlog
chlog -c .github/changelog.yml -o changelog.md prev last
# https://github.com/softprops/action-gh-release
- name: Create release and upload assets
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
name: ${{ env.RELEASE_TAG }}
tag_name: ${{ env.RELEASE_TAG }}
body_path: changelog.md
token: ${{ secrets.GITHUB_TOKEN }}
files: |
build/chlog-darwin-amd64
build/chlog-linux-amd64
build/chlog-linux-arm
build/chlog-windows-amd64.exe