-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a9c95a3
commit 38aea65
Showing
2 changed files
with
22 additions
and
92 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,113 +1,36 @@ | ||
name: Build and Release | ||
name: Release | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
tags: | ||
- 'v*' | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.21' | ||
cache: true | ||
|
||
- name: Verify dependencies | ||
run: go mod verify | ||
|
||
- name: Build | ||
run: go build -v ./... | ||
|
||
- name: Run tests | ||
run: go test -v ./... | ||
|
||
- name: Run golangci-lint | ||
uses: golangci/golangci-lint-action@v3 | ||
with: | ||
version: latest | ||
|
||
release: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
if: startsWith(github.ref, 'refs/tags/v') | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.21' | ||
|
||
- name: Create release directories | ||
run: | | ||
mkdir -p release/src | ||
mkdir -p release/binaries | ||
mkdir -p release/dist | ||
go-version: '1.22' | ||
|
||
- name: Create source archive | ||
- name: Build | ||
run: | | ||
# Copy source files | ||
cp -r * release/src/ | ||
rm -rf release/src/release # Remove release directory from source | ||
cd release | ||
zip -r "lilmail-${GITHUB_REF#refs/tags/}-src.zip" src/ | ||
VERSION=$(git describe --tags | tr -d 'v') | ||
mkdir -p builds | ||
- name: Build binaries | ||
run: | | ||
platforms=("linux-amd64" "linux-arm64" "windows-amd64" "darwin-amd64" "darwin-arm64") | ||
# Binary builds | ||
GOOS=linux GOARCH=amd64 go build -o builds/lilmail${VERSION}_linux_amd64 | ||
GOOS=windows GOARCH=amd64 go build -o builds/lilmail${VERSION}_windows_amd64.exe | ||
GOOS=darwin GOARCH=amd64 go build -o builds/lilmail${VERSION}_darwin_amd64 | ||
for platform in "${platforms[@]}" | ||
do | ||
# Split platform into OS and arch | ||
IFS=- read os arch <<< "$platform" | ||
# Create platform directory | ||
mkdir -p "release/binaries/lilmail-${GITHUB_REF#refs/tags/}-${platform}" | ||
# Set output name based on OS | ||
if [ "$os" = "windows" ]; then | ||
output="release/binaries/lilmail-${GITHUB_REF#refs/tags/}-${platform}/lilmail.exe" | ||
else | ||
output="release/binaries/lilmail-${GITHUB_REF#refs/tags/}-${platform}/lilmail" | ||
fi | ||
# Build binary | ||
GOOS=$os GOARCH=$arch go build -o "$output" | ||
# Copy additional files | ||
cp README.md "release/binaries/lilmail-${GITHUB_REF#refs/tags/}-${platform}/" | ||
cp config.example.toml "release/binaries/lilmail-${GITHUB_REF#refs/tags/}-${platform}/" | ||
# Create tar.gz or zip | ||
cd release/binaries | ||
if [ "$os" = "windows" ]; then | ||
zip -r "../dist/lilmail-${GITHUB_REF#refs/tags/}-${platform}.zip" "lilmail-${GITHUB_REF#refs/tags/}-${platform}" | ||
else | ||
tar czf "../dist/lilmail-${GITHUB_REF#refs/tags/}-${platform}.tar.gz" "lilmail-${GITHUB_REF#refs/tags/}-${platform}" | ||
fi | ||
cd ../.. | ||
done | ||
# Source archive | ||
git archive --format=zip HEAD -o builds/lilmail${VERSION}_source.zip | ||
- name: Create Release | ||
id: create_release | ||
uses: softprops/action-gh-release@v1 | ||
- uses: softprops/action-gh-release@v1 | ||
with: | ||
files: | | ||
release/dist/*.tar.gz | ||
release/dist/*.zip | ||
release/lilmail-*-src.zip | ||
draft: false | ||
prerelease: false | ||
generate_release_notes: true | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
files: builds/* |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
|
||
VERSION=$(git describe --tags --always || echo "dev") | ||
COMMIT=$(git rev-parse --short HEAD 2>/dev/null || echo "none") | ||
GO_VERSION=$(go version | cut -d' ' -f3) | ||
|
||
echo "$VERSION $COMMIT built with $GO_VERSION" |