Merge pull request #8 from firstbatchxyz/windows-dkn-compute #30
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
name: Build and Publish Launch Releases | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'main.go' | |
- 'utils/**' | |
- 'go.mod' | |
- 'go.sum' | |
- '.github/workflows/build_and_publish.yml' | |
jobs: | |
build: | |
runs-on: ${{ matrix.runner }} | |
strategy: | |
matrix: | |
include: | |
- { runner: macos-latest, goos: darwin, osname: macOS, arch: amd64, tags: netcgo } | |
- { runner: macos-latest, goos: darwin, osname: macOS, arch: arm64, tags: netcgo } | |
- { runner: ubuntu-latest, goos: linux, osname: linux, arch: amd64, env: CGO_ENABLED=0 } | |
- { runner: ubuntu-latest, goos: linux, osname: linux, arch: arm64, env: CGO_ENABLED=0 } | |
- { runner: ubuntu-latest, goos: windows, osname: windows, arch: amd64, env: CGO_ENABLED=0, extension: ".exe" } | |
# - { runner: ubuntu-latest, goos: windows, osname: windows, arch: arm64, env: CGO_ENABLED=0, extension: ".exe" } | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.21.5' | |
- name: Build Go app | |
env: | |
GOOS: ${{ matrix.goos }} | |
GOARCH: ${{ matrix.arch }} | |
run: | | |
${{ matrix.env }} go build -tags="${{ matrix.tags }}" -o dkn-compute-launcher${{ matrix.extension }} . | |
- name: Download dkn-compute binaries | |
env: | |
FOLDER_NAME: dkn-compute-node | |
ZIP_NAME: dkn-compute-launcher-${{ matrix.osname }}-${{ matrix.arch }} | |
run: | | |
# download node binary | |
mkdir node_binary | |
cd node_binary | |
echo "Downloading dkn-compute-binary-${{ matrix.osname }}-${{ matrix.arch }}" | |
if curl -L -o dkn-compute-binary${{ matrix.extension }} https://github.com/firstbatchxyz/dkn-compute-node/releases/latest/download/dkn-compute-binary-${{ matrix.osname }}-${{ matrix.arch }}${{ matrix.extension }}; then | |
echo "Download completed." | |
ls | |
else | |
echo "Error: Failed to download the zip file." | |
exit 1 | |
fi | |
- name: Prepare Launch Release Files | |
env: | |
FOLDER_NAME: dkn-compute-node | |
ZIP_NAME: dkn-compute-launcher-${{ matrix.osname }}-${{ matrix.arch }} | |
run: | | |
mkdir $FOLDER_NAME | |
# copy launcher binary | |
cp ./dkn-compute-launcher${{ matrix.extension }} $FOLDER_NAME/dkn-compute-launcher${{ matrix.extension }} | |
# download .env.example and save it as .env | |
curl -o $FOLDER_NAME/.env https://raw.githubusercontent.com/firstbatchxyz/dkn-compute-node/master/.env.example | |
# copy dkn-compute binary | |
cp ./node_binary/dkn-compute-binary${{ matrix.extension }} $FOLDER_NAME/dkn-compute${{ matrix.extension }} | |
zip -r $ZIP_NAME.zip $FOLDER_NAME | |
- name: Upload Launch Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dkn-compute-launcher-${{ matrix.osname }}-${{ matrix.arch }} | |
path: dkn-compute-launcher-${{ matrix.osname }}-${{ matrix.arch }}.zip | |
release: | |
needs: build | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/master' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Download Launch Artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
merge-multiple: true | |
path: ./artifacts | |
- name: Get the latest tag | |
id: get_latest_tag | |
run: echo "latest_tag=$(git describe --tags $(git rev-list --tags --max-count=1))" >> $GITHUB_ENV | |
- name: Calculate new tag | |
id: calculate_tag | |
run: | | |
latest_tag=${{ env.latest_tag }} | |
if [ -z "$latest_tag" ]; then | |
new_tag="v0.0.1" | |
else | |
IFS='.' read -ra VERSION_PARTS <<< "${latest_tag#v}" | |
major=${VERSION_PARTS[0]} | |
minor=${VERSION_PARTS[1]} | |
patch=${VERSION_PARTS[2]} | |
new_patch=$((patch + 1)) | |
new_tag="v${major}.${minor}.${new_patch}" | |
fi | |
echo "NEW_TAG=$new_tag" >> $GITHUB_ENV | |
- name: Create release with artifacts | |
uses: ncipollo/release-action@v1 | |
with: | |
name: ${{ env.NEW_TAG }} | |
tag: ${{ env.NEW_TAG }} | |
artifacts: "artifacts/*" | |
artifactContentType: application/zip | |
draft: true |