Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 53 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,50 @@ jobs:
examples/example-deno-app/bundle/*.dmg
examples/example-deno-app/bundle/*.app

build-macos-intel:
name: Build macOS (Intel)
runs-on: macos-15-intel
steps:
- uses: actions/checkout@v4

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable

- name: Install Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x

- name: Cache cargo
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-intel-cargo-release-${{ hashFiles('**/Cargo.lock') }}

- name: Build forge CLI and runtime
run: |
cargo build -p forge_cli --release
cargo build -p forge-runtime --release

- name: Package forge binaries
run: |
mkdir -p forge-dist
cp target/release/forge forge-dist/
cp target/release/forge-runtime forge-dist/
cd forge-dist && tar -czvf ../forge-x86_64-apple-darwin.tar.gz *

- name: Upload macOS Intel artifacts
uses: actions/upload-artifact@v4
with:
name: macos-intel-artifacts
path: |
forge-x86_64-apple-darwin.tar.gz

build-linux:
name: Build Linux
runs-on: ubuntu-latest
Expand Down Expand Up @@ -190,7 +234,7 @@ jobs:

release:
name: Create Release
needs: [build-windows, build-macos-arm, build-linux]
needs: [build-windows, build-macos-arm, build-macos-intel, build-linux]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -207,6 +251,12 @@ jobs:
name: macos-arm-artifacts
path: artifacts/macos-arm

- name: Download macOS Intel artifacts
uses: actions/download-artifact@v4
with:
name: macos-intel-artifacts
path: artifacts/macos-intel

- name: Download Linux artifacts
uses: actions/download-artifact@v4
with:
Expand All @@ -219,6 +269,7 @@ jobs:
# Forge toolchain tarballs (forge + forge-host)
cp artifacts/windows/forge-x86_64-pc-windows-msvc.tar.gz release/ || true
cp artifacts/macos-arm/forge-aarch64-apple-darwin.tar.gz release/ || true
cp artifacts/macos-intel/forge-x86_64-apple-darwin.tar.gz release/ || true
cp artifacts/linux/forge-x86_64-unknown-linux-gnu.tar.gz release/ || true
# Example app bundles
cp artifacts/windows/examples/example-deno-app/bundle/*.msix release/ || true
Expand All @@ -236,7 +287,7 @@ jobs:
fi

- name: Create GitHub Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.tag.outputs.TAG }}
name: ${{ steps.tag.outputs.TAG }}
Expand Down
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,30 @@ All notable changes to Forge will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.0] - 2026-06-08

First stable release — **Steel Donut**.

### Added

- `forge-smelt`: ahead-of-time TypeScript→JavaScript compiler for app source,
wired into `forge build` (bundles ship compiled JS) and exposed as `forge smelt`.
- `forge-docs-check`: a documentation drift gate that fails CI when the docs site
drifts from the code (crate pages, API signatures, counts, CLI commands, example
module lists, the extension index, and the generated CLI reference), enforced via
CI, a pre-commit hook, and `cargo test`.
- Generated CLI reference: the `forge` command reference is produced from the
`forge_cli` clap command model, so the docs cannot drift from the parser.
- Forge brand icon shipped as the default scaffolded app icon.

### Changed

- Migrated the `forge` CLI to clap derive (generated `--help`/`--version`, real
error messages) while preserving the command/flag contract.
- Documentation site rebranded to the Forge logo palette (black + ember/amber) and
mounted under `/docs/`.
- Version bumped to 1.0.0 across all workspace crates.

## [0.1.0-alpha.1] - 2024-12-12

### Added
Expand Down
Loading
Loading