-
Notifications
You must be signed in to change notification settings - Fork 0
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
be4c98a
commit 2b0550f
Showing
1 changed file
with
124 additions
and
49 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,52 +1,127 @@ | ||
on: | ||
push: | ||
branches: | ||
- main | ||
push: | ||
branches: | ||
- main | ||
name: Build and Release | ||
jobs: | ||
build_and_release: | ||
runs-on: ubuntu-latest | ||
env: # Define environment variables here | ||
TAG: latest | ||
RELEASE_NAME: Latest release | ||
RELEASE_BODY: Latest release | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
BINARY_PREFIX: ${{ github.event.repository.name }} | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: '*' # Use the latest stable version of Go | ||
|
||
- name: Install dependencies | ||
run: go mod download | ||
|
||
- name: Download releaseMaker | ||
run: wget https://github.com/8ff/releaseMaker/releases/download/latest/releaseMaker.linux.amd64 -O /tmp/releaseMaker && chmod +x /tmp/releaseMaker | ||
|
||
- name: Build Darwin ARM64 binary | ||
run: GOOS=darwin GOARCH=arm64 go build -ldflags "-X 'main.Version=$(date +'%Y-%m-%d_%H:%M:%S')'" -o "/tmp/build/${{ env.BINARY_PREFIX }}.darwin.arm64" | ||
|
||
- name: Build Darwin AMD64 binary | ||
run: GOOS=darwin GOARCH=amd64 go build -ldflags "-X 'main.Version=$(date +'%Y-%m-%d_%H:%M:%S')'" -o "/tmp/build/${{ env.BINARY_PREFIX }}.darwin.amd64" | ||
|
||
- name: Build Linux ARM64 binary | ||
run: GOOS=linux GOARCH=arm64 go build -ldflags "-X 'main.Version=$(date +'%Y-%m-%d_%H:%M:%S')'" -o "/tmp/build/${{ env.BINARY_PREFIX }}.linux.arm64" | ||
|
||
- name: Build Linux AMD64 binary | ||
run: GOOS=linux GOARCH=amd64 go build -ldflags "-X 'main.Version=$(date +'%Y-%m-%d_%H:%M:%S')'" -o "/tmp/build/${{ env.BINARY_PREFIX }}.linux.amd64" | ||
|
||
|
||
- name: Replace Existing Release | ||
run: /tmp/releaseMaker replace ${{ github.repository }} ${{ env.TAG }} "${{ env.RELEASE_NAME }}" "${{ env.RELEASE_BODY }}" | ||
|
||
- name: Upload the artifacts | ||
run: | | ||
cd /tmp/build | ||
for file in *; do | ||
/tmp/releaseMaker upload ${{ github.repository }} ${{ env.TAG }} $file $file | ||
done | ||
build_and_release: | ||
runs-on: ubuntu-latest | ||
env: # Define environment variables here | ||
TAG: latest | ||
RELEASE_NAME: Latest release | ||
RELEASE_BODY: Latest release | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
BINARY_PREFIX: badger | ||
SOURCE_PATH: . | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v2 | ||
- name: Set up Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: '*' # Use the latest stable version of Go | ||
- name: Install dependencies | ||
run: go mod download | ||
- name: Download releaseMaker | ||
run: wget https://github.com/8ff/releaseMaker/releases/download/latest/releaseMaker.linux.amd64 -O /tmp/releaseMaker && chmod +x /tmp/releaseMaker | ||
|
||
- name: Build Darwin ARM64 binary | ||
working-directory: ${{ env.SOURCE_PATH }} | ||
env: | ||
OS: darwin | ||
ARCH: arm64 | ||
run: GOOS=$OS GOARCH=$ARCH go build -ldflags "-X 'main.Version=$(date +'%Y-%m-%d_%H:%M:%S')'" -o "/tmp/build/${{ env.BINARY_PREFIX }}.$OS.$ARCH" | ||
|
||
- name: Build Darwin AMD64 binary | ||
working-directory: ${{ env.SOURCE_PATH }} | ||
env: | ||
OS: darwin | ||
ARCH: amd64 | ||
run: GOOS=$OS GOARCH=$ARCH go build -ldflags "-X 'main.Version=$(date +'%Y-%m-%d_%H:%M:%S')'" -o "/tmp/build/${{ env.BINARY_PREFIX }}.$OS.$ARCH" | ||
|
||
- name: Build Linux ARM64 binary | ||
working-directory: ${{ env.SOURCE_PATH }} | ||
env: | ||
OS: linux | ||
ARCH: arm64 | ||
run: GOOS=$OS GOARCH=$ARCH go build -ldflags "-X 'main.Version=$(date +'%Y-%m-%d_%H:%M:%S')'" -o "/tmp/build/${{ env.BINARY_PREFIX }}.$OS.$ARCH" | ||
|
||
- name: Build Linux AMD64 binary | ||
working-directory: ${{ env.SOURCE_PATH }} | ||
env: | ||
OS: linux | ||
ARCH: amd64 | ||
run: GOOS=$OS GOARCH=$ARCH go build -ldflags "-X 'main.Version=$(date +'%Y-%m-%d_%H:%M:%S')'" -o "/tmp/build/${{ env.BINARY_PREFIX }}.$OS.$ARCH" | ||
|
||
- name: Build Windows AMD64 binary | ||
working-directory: ${{ env.SOURCE_PATH }} | ||
env: | ||
OS: windows | ||
ARCH: amd64 | ||
run: GOOS=$OS GOARCH=$ARCH go build -ldflags "-X 'main.Version=$(date +'%Y-%m-%d_%H:%M:%S')'" -o "/tmp/build/${{ env.BINARY_PREFIX }}.$OS.$ARCH.exe" | ||
|
||
- name: Build Windows ARM64 binary | ||
working-directory: ${{ env.SOURCE_PATH }} | ||
env: | ||
OS: windows | ||
ARCH: arm64 | ||
run: GOOS=$OS GOARCH=$ARCH go build -ldflags "-X 'main.Version=$(date +'%Y-%m-%d_%H:%M:%S')'" -o "/tmp/build/${{ env.BINARY_PREFIX }}.$OS.$ARCH.exe" | ||
|
||
- name: Build OpenBSD AMD64 binary | ||
working-directory: ${{ env.SOURCE_PATH }} | ||
env: | ||
OS: openbsd | ||
ARCH: amd64 | ||
run: GOOS=$OS GOARCH=$ARCH go build -ldflags "-X 'main.Version=$(date +'%Y-%m-%d_%H:%M:%S')'" -o "/tmp/build/${{ env.BINARY_PREFIX }}.$OS.$ARCH" | ||
|
||
- name: Build OpenBSD ARM64 binary | ||
working-directory: ${{ env.SOURCE_PATH }} | ||
env: | ||
OS: openbsd | ||
ARCH: arm64 | ||
run: GOOS=$OS GOARCH=$ARCH go build -ldflags "-X 'main.Version=$(date +'%Y-%m-%d_%H:%M:%S')'" -o "/tmp/build/${{ env.BINARY_PREFIX }}.$OS.$ARCH" | ||
|
||
- name: Build FreeBSD AMD64 binary | ||
working-directory: ${{ env.SOURCE_PATH }} | ||
env: | ||
OS: freebsd | ||
ARCH: amd64 | ||
run: GOOS=$OS GOARCH=$ARCH go build -ldflags "-X 'main.Version=$(date +'%Y-%m-%d_%H:%M:%S')'" -o "/tmp/build/${{ env.BINARY_PREFIX }}.$OS.$ARCH" | ||
|
||
- name: Build FreeBSD ARM64 binary | ||
working-directory: ${{ env.SOURCE_PATH }} | ||
env: | ||
OS: freebsd | ||
ARCH: arm64 | ||
run: GOOS=$OS GOARCH=$ARCH go build -ldflags "-X 'main.Version=$(date +'%Y-%m-%d_%H:%M:%S')'" -o "/tmp/build/${{ env.BINARY_PREFIX }}.$OS.$ARCH" | ||
|
||
- name: Build NetBSD AMD64 binary | ||
working-directory: ${{ env.SOURCE_PATH }} | ||
env: | ||
OS: netbsd | ||
ARCH: amd64 | ||
run: GOOS=$OS GOARCH=$ARCH go build -ldflags "-X 'main.Version=$(date +'%Y-%m-%d_%H:%M:%S')'" -o "/tmp/build/${{ env.BINARY_PREFIX }}.$OS.$ARCH" | ||
|
||
- name: Build NetBSD ARM64 binary | ||
working-directory: ${{ env.SOURCE_PATH }} | ||
env: | ||
OS: netbsd | ||
ARCH: arm64 | ||
run: GOOS=$OS GOARCH=$ARCH go build -ldflags "-X 'main.Version=$(date +'%Y-%m-%d_%H:%M:%S')'" -o "/tmp/build/${{ env.BINARY_PREFIX }}.$OS.$ARCH" | ||
|
||
- name: Build DragonFly BSD AMD64 binary | ||
working-directory: ${{ env.SOURCE_PATH }} | ||
env: | ||
OS: dragonfly | ||
ARCH: amd64 | ||
run: GOOS=$OS GOARCH=$ARCH go build -ldflags "-X 'main.Version=$(date +'%Y-%m-%d_%H:%M:%S')'" -o "/tmp/build/${{ env.BINARY_PREFIX }}.$OS.$ARCH" | ||
|
||
- name: Replace Existing Release | ||
run: /tmp/releaseMaker replace ${{ github.repository }} ${{ env.TAG }} "${{ env.RELEASE_NAME }}" "${{ env.RELEASE_BODY }}" | ||
|
||
- name: Upload the artifacts | ||
run: | | ||
cd /tmp/build | ||
for file in *; do | ||
/tmp/releaseMaker upload ${{ github.repository }} ${{ env.TAG }} $file $file | ||
done |