Skip to content

Commit

Permalink
CI: replace with modern one
Browse files Browse the repository at this point in the history
  • Loading branch information
nixargh committed Jan 8, 2025
1 parent cf8b7d9 commit 855fbfd
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 54 deletions.
83 changes: 29 additions & 54 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,65 +4,40 @@ on:
push:
# Sequence of patterns matched against refs/tags
tags:
- '*-release' # Push events to matching v*, i.e. v1.0, v20.15.10
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

jobs:

build:
name: Build
tagged-release-binaries:
# Only on tags.
if: startsWith(github.ref, 'refs/tags/')
name: Tagged release binaries
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Go 1.20
uses: actions/setup-go@v1
with:
go-version: 1.20
id: go
- name: Extract tag
shell: bash
run: echo "tag=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/tags/}}" >> $GITHUB_OUTPUT
id: extract_tag

- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build binaries
env:
VERSION: "${{ steps.extract_tag.outputs.tag }}"
CGO_ENABLED: 0
GOOS: linux
GOARCH: amd64
run: |
mkdir -p ./bin
go build -buildvcs=true -o ./bin "-ldflags=-X main.Version=${VERSION}" ./
- name: Get dependencies
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: Generate Changelog
run: "./scripts/read_changelog.sh ${{ steps.extract_tag.outputs.tag }} >> ${{ github.workspace }}-CHANGELOG.txt"

- name: Build
run: go build -v .
- name: Upload binary
uses: actions/upload-artifact@v1
with:
name: tired
path: tired
publish:
name: Publish
needs: [build]
runs-on: ubuntu-latest
steps:
- name: Download binary
uses: actions/download-artifact@v1
with:
name: tired
- 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
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./tired/tired
asset_name: tired
asset_content_type: application/x-executable
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: "bin/*"
body_path: "${{ github.workspace }}-CHANGELOG.txt"
make_latest: true
fail_on_unmatched_files: true
40 changes: 40 additions & 0 deletions scripts/read_changelog.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
#!/bin/sh

set -u -e

CHANGELOG=CHANGELOG.md
FOUND=0

TAG=$1

stringContain() {
case $1 in
$2*)
return 0
;;
*)
return 1
;;
esac
}

while IFS= read -r LINE; do
case "$FOUND" in
0)
if stringContain "${LINE}" "## [${TAG}"; then
echo "${LINE}"
FOUND=$((FOUND + 1))
fi
;;
1)
if stringContain "${LINE}" "## ["; then
FOUND=$((FOUND + 1))
else
echo "${LINE}"
fi
;;
2)
break
;;
esac
done <$CHANGELOG

0 comments on commit 855fbfd

Please sign in to comment.