mirror of
https://github.com/lunchcat/sif.git
synced 2026-01-12 21:13:50 -08:00
102 lines
3.2 KiB
YAML
102 lines
3.2 KiB
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
permissions:
|
|
contents: write
|
|
packages: write
|
|
|
|
jobs:
|
|
test:
|
|
uses: ./.github/workflows/runtest.yml
|
|
|
|
build-and-release:
|
|
needs: test
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: "1.24"
|
|
|
|
- name: Build for Windows
|
|
run: |
|
|
GOOS=windows GOARCH=amd64 go build -o sif-windows-amd64.exe ./cmd/sif
|
|
GOOS=windows GOARCH=386 go build -o sif-windows-386.exe ./cmd/sif
|
|
|
|
- name: Build for macOS
|
|
run: |
|
|
GOOS=darwin GOARCH=amd64 go build -o sif-macos-amd64 ./cmd/sif
|
|
GOOS=darwin GOARCH=arm64 go build -o sif-macos-arm64 ./cmd/sif
|
|
|
|
- name: Build for Linux
|
|
run: |
|
|
GOOS=linux GOARCH=amd64 go build -o sif-linux-amd64 ./cmd/sif
|
|
GOOS=linux GOARCH=386 go build -o sif-linux-386 ./cmd/sif
|
|
GOOS=linux GOARCH=arm64 go build -o sif-linux-arm64 ./cmd/sif
|
|
|
|
- name: Package releases with modules
|
|
run: |
|
|
for binary in sif-linux-amd64 sif-linux-386 sif-linux-arm64 sif-macos-amd64 sif-macos-arm64; do
|
|
mkdir -p "dist/${binary}"
|
|
cp "${binary}" "dist/${binary}/sif"
|
|
cp -r modules "dist/${binary}/"
|
|
tar -czf "${binary}.tar.gz" -C dist "${binary}"
|
|
done
|
|
for binary in sif-windows-amd64 sif-windows-386; do
|
|
mkdir -p "dist/${binary}"
|
|
cp "${binary}.exe" "dist/${binary}/sif.exe"
|
|
cp -r modules "dist/${binary}/"
|
|
cd dist && zip -r "../${binary}.zip" "${binary}" && cd ..
|
|
done
|
|
|
|
- name: Set release version
|
|
run: echo "RELEASE_VERSION=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
|
|
|
|
- name: Create Release and Upload Assets
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
tag_name: automated-release-${{ env.RELEASE_VERSION }}
|
|
name: Release ${{ env.RELEASE_VERSION }}
|
|
body: |
|
|
Automated release v${{ env.RELEASE_VERSION }}
|
|
|
|
## Assets
|
|
|
|
Each archive contains the sif binary and built-in modules.
|
|
|
|
- Windows (64-bit): `sif-windows-amd64.zip`
|
|
- Windows (32-bit): `sif-windows-386.zip`
|
|
- macOS (64-bit Intel): `sif-macos-amd64.tar.gz`
|
|
- macOS (64-bit ARM): `sif-macos-arm64.tar.gz`
|
|
- Linux (64-bit): `sif-linux-amd64.tar.gz`
|
|
- Linux (32-bit): `sif-linux-386.tar.gz`
|
|
- Linux (64-bit ARM): `sif-linux-arm64.tar.gz`
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
tar -xzf sif-linux-amd64.tar.gz
|
|
cd sif-linux-amd64
|
|
./sif -h
|
|
```
|
|
|
|
For more details, check the [commit history](https://github.com/${{ github.repository }}/commits/main).
|
|
draft: false
|
|
prerelease: false
|
|
files: |
|
|
sif-windows-amd64.zip
|
|
sif-windows-386.zip
|
|
sif-macos-amd64.tar.gz
|
|
sif-macos-arm64.tar.gz
|
|
sif-linux-amd64.tar.gz
|
|
sif-linux-386.tar.gz
|
|
sif-linux-arm64.tar.gz
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|