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
7 changes: 6 additions & 1 deletion .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,12 @@ jobs:
revision: ${{ github.run_number }}
# Every artifact already carries its final repository path, so unpacking
# them over the tree is the whole mapping.
natives-artifact-pattern: "natives-*"
#
# Asked for only when the natives job actually ran. It is skipped whenever
# the release has not moved -- most runs, and every republish of work already
# merged -- and asking for artifacts that were never produced fails the
# download and takes the publish with it.
natives-artifact-pattern: ${{ needs.natives.result == 'success' && 'natives-*' || '' }}
force-publish: ${{ inputs.force-publish || false }}
publish-enabled: ${{ !inputs.skip-assets-publishing }}
enable-email-notifications: true
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# MeshOptimizer.NET

This repository contains low-level bindings for MeshOptimizer used in Evergine.
This binding is generated from the MeshOptimizer release:
[https://github.com/zeux/meshoptimizer/releases/tag/v1.2](https://github.com/zeux/meshoptimizer/releases/tag/v1.2)

This binding tracks the [latest stable MeshOptimizer release](https://github.com/zeux/meshoptimizer/releases/latest),
header and native libraries together. The exact revision currently vendored is
recorded in [`binding.yml`](binding.yml) as `upstream.release.current`, which the
CD rewrites when it brings in a newer release — so there is one place to look and
nothing here to keep up to date by hand.

[![CI](https://github.com/EvergineTeam/Meshoptimizer.NET/actions/workflows/CI.yml/badge.svg)](https://github.com/EvergineTeam/Meshoptimizer.NET/actions/workflows/CI.yml)
[![CD](https://github.com/EvergineTeam/Meshoptimizer.NET/actions/workflows/CD.yml/badge.svg)](https://github.com/EvergineTeam/Meshoptimizer.NET/actions/workflows/CD.yml)
Expand Down
Loading