ci(workflows): use host-uk/build@dev for releases
- Replace manual Go bootstrap with host-uk/build@dev action - Add matrix builds for linux/amd64, linux/arm64, darwin/universal, windows/amd64 - Update README URLs from Snider/Core to host-uk/core - Simplify artifact handling with merge-multiple Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
0eca6865bc
commit
efa1116a48
3 changed files with 51 additions and 90 deletions
65
.github/workflows/dev-release.yml
vendored
65
.github/workflows/dev-release.yml
vendored
|
|
@ -13,62 +13,46 @@ env:
|
|||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
include:
|
||||
- os: ubuntu-latest
|
||||
platform: linux/amd64
|
||||
- os: ubuntu-latest
|
||||
platform: linux/arm64
|
||||
- os: macos-latest
|
||||
platform: darwin/universal
|
||||
- os: windows-latest
|
||||
platform: windows/amd64
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@v5
|
||||
- name: Build
|
||||
uses: host-uk/build@dev
|
||||
with:
|
||||
go-version-file: 'go.mod'
|
||||
|
||||
- name: Install core CLI
|
||||
run: |
|
||||
curl -fsSL "https://github.com/host-uk/core/releases/download/${{ env.CORE_VERSION }}/core-linux-amd64" -o /tmp/core
|
||||
chmod +x /tmp/core
|
||||
sudo mv /tmp/core /usr/local/bin/core
|
||||
core --version
|
||||
|
||||
- name: Generate code
|
||||
run: go generate ./internal/cmd/updater/...
|
||||
|
||||
- name: Build all targets
|
||||
run: core build --targets=linux/amd64,linux/arm64,darwin/amd64,darwin/arm64,windows/amd64,windows/arm64 --ci
|
||||
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: binaries
|
||||
path: dist/
|
||||
build-name: core
|
||||
build-platform: ${{ matrix.platform }}
|
||||
build: true
|
||||
package: true
|
||||
sign: false
|
||||
|
||||
release:
|
||||
needs: build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Download artifacts
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: binaries
|
||||
path: dist
|
||||
merge-multiple: true
|
||||
|
||||
- name: Prepare release files
|
||||
run: |
|
||||
mkdir -p release
|
||||
cp dist/*.tar.gz dist/*.zip dist/CHECKSUMS.txt release/ 2>/dev/null || true
|
||||
# Also copy raw binaries for direct download
|
||||
for dir in dist/*/; do
|
||||
if [ -d "$dir" ]; then
|
||||
platform=$(basename "$dir")
|
||||
for bin in "$dir"*; do
|
||||
if [ -f "$bin" ]; then
|
||||
name=$(basename "$bin")
|
||||
cp "$bin" "release/core-${platform//_/-}${name##core}"
|
||||
fi
|
||||
done
|
||||
fi
|
||||
done
|
||||
cp dist/* release/ 2>/dev/null || true
|
||||
ls -la release/
|
||||
|
||||
- name: Delete existing dev release
|
||||
|
|
@ -96,9 +80,6 @@ jobs:
|
|||
# macOS/Linux
|
||||
curl -fsSL https://github.com/host-uk/core/releases/download/dev/core-linux-amd64 -o core
|
||||
chmod +x core && sudo mv core /usr/local/bin/
|
||||
|
||||
# Or with Homebrew
|
||||
brew tap host-uk/tap && brew install host-uk/tap/core
|
||||
\`\`\`
|
||||
|
||||
This is a pre-release for testing. Use tagged releases for production." \
|
||||
|
|
|
|||
65
.github/workflows/release.yml
vendored
65
.github/workflows/release.yml
vendored
|
|
@ -8,67 +8,48 @@ on:
|
|||
permissions:
|
||||
contents: write
|
||||
|
||||
env:
|
||||
CORE_VERSION: dev
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
include:
|
||||
- os: ubuntu-latest
|
||||
platform: linux/amd64
|
||||
- os: ubuntu-latest
|
||||
platform: linux/arm64
|
||||
- os: macos-latest
|
||||
platform: darwin/universal
|
||||
- os: windows-latest
|
||||
platform: windows/amd64
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@v5
|
||||
- name: Build
|
||||
uses: host-uk/build@dev
|
||||
with:
|
||||
go-version-file: 'go.mod'
|
||||
|
||||
- name: Install core CLI
|
||||
run: |
|
||||
curl -fsSL "https://github.com/host-uk/core/releases/download/${{ env.CORE_VERSION }}/core-linux-amd64" -o /tmp/core
|
||||
chmod +x /tmp/core
|
||||
sudo mv /tmp/core /usr/local/bin/core
|
||||
core --version
|
||||
|
||||
- name: Generate code
|
||||
run: go generate ./internal/cmd/updater/...
|
||||
|
||||
- name: Build all targets
|
||||
run: core build --targets=linux/amd64,linux/arm64,darwin/amd64,darwin/arm64,windows/amd64,windows/arm64 --ci
|
||||
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: binaries
|
||||
path: dist/
|
||||
build-name: core
|
||||
build-platform: ${{ matrix.platform }}
|
||||
build: true
|
||||
package: true
|
||||
sign: false
|
||||
|
||||
release:
|
||||
needs: build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Download artifacts
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: binaries
|
||||
path: dist
|
||||
merge-multiple: true
|
||||
|
||||
- name: Prepare release files
|
||||
run: |
|
||||
mkdir -p release
|
||||
cp dist/*.tar.gz dist/*.zip dist/CHECKSUMS.txt release/ 2>/dev/null || true
|
||||
# Also copy raw binaries for direct download
|
||||
for dir in dist/*/; do
|
||||
if [ -d "$dir" ]; then
|
||||
platform=$(basename "$dir")
|
||||
for bin in "$dir"*; do
|
||||
if [ -f "$bin" ]; then
|
||||
name=$(basename "$bin")
|
||||
cp "$bin" "release/core-${platform//_/-}${name##core}"
|
||||
fi
|
||||
done
|
||||
fi
|
||||
done
|
||||
cp dist/* release/ 2>/dev/null || true
|
||||
ls -la release/
|
||||
|
||||
- name: Create release
|
||||
|
|
|
|||
11
README.md
11
README.md
|
|
@ -8,8 +8,7 @@
|
|||
|
||||
Core is a Web3 Framework, written in Go using Wails.io to replace Electron and the bloat of browsers that, at their core, still live in their mum's basement.
|
||||
|
||||
- Discord: http://discord.dappco.re
|
||||
- Repo: https://github.com/Snider/Core
|
||||
- Repo: https://github.com/host-uk/core
|
||||
|
||||
## Vision
|
||||
|
||||
|
|
@ -26,7 +25,7 @@ Core is an **opinionated Web3 desktop application framework** providing:
|
|||
## Quick Start
|
||||
|
||||
```go
|
||||
import core "github.com/Snider/Core"
|
||||
import core "github.com/host-uk/core"
|
||||
|
||||
app := core.New(
|
||||
core.WithServiceLock(),
|
||||
|
|
@ -144,7 +143,7 @@ app.RegisterService(application.NewService(coreService)) // Only Core is regist
|
|||
**Currently exposed** (see `cmd/core-gui/public/bindings/`):
|
||||
```typescript
|
||||
// From frontend:
|
||||
import { ACTION, Config, Service } from './bindings/github.com/Snider/Core/pkg/core'
|
||||
import { ACTION, Config, Service } from './bindings/github.com/host-uk/core/pkg/core'
|
||||
|
||||
ACTION(msg) // Broadcast IPC message
|
||||
Config() // Get config service reference
|
||||
|
|
@ -159,7 +158,7 @@ Sub-services are accessed via Core's **IPC/ACTION system**, not direct Wails bin
|
|||
|
||||
```typescript
|
||||
// Frontend calls Core.ACTION() with typed messages
|
||||
import { ACTION } from './bindings/github.com/Snider/Core/pkg/core'
|
||||
import { ACTION } from './bindings/github.com/host-uk/core/pkg/core'
|
||||
|
||||
// Open a window
|
||||
ACTION({ action: "display.open_window", name: "settings", options: { Title: "Settings", Width: 800 } })
|
||||
|
|
@ -198,7 +197,7 @@ cd cmd/core-gui
|
|||
wails3 generate bindings # Regenerate after Go changes
|
||||
```
|
||||
|
||||
Bindings output to `cmd/core-gui/public/bindings/github.com/Snider/Core/` mirroring Go package structure.
|
||||
Bindings output to `cmd/core-gui/public/bindings/github.com/host-uk/core/` mirroring Go package structure.
|
||||
|
||||
---
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue