Skip to content
This repository was archived by the owner on Mar 3, 2026. It is now read-only.
Draft
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
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
tags:
- "v**"
workflow_dispatch:

jobs:
release:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
output_file="appimage/${{ matrix.tool_fullname }}-$(cat VERSION)-x86_64.AppImage"
output_file="appimage/${{ matrix.tool_fullname }}-${{ github.ref_name }}-x86_64.AppImage"
mv appimage/${{ matrix.tool_fullname }}-x86_64.AppImage $output_file
gh release upload v$(cat VERSION) $output_file
gh release upload ${{ github.ref_name }} $output_file
4 changes: 2 additions & 2 deletions .github/workflows/release_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
output_file="${{ matrix.tool_fullname }}-$(cat VERSION)-x86_64.dmg"
output_file="${{ matrix.tool_fullname }}-${{ github.ref_name }}-x86_64.dmg"
mv ${{ matrix.tool }}.dmg $output_file
gh release upload v$(cat VERSION) $output_file
gh release upload ${{ github.ref_name }} $output_file
5 changes: 2 additions & 3 deletions .github/workflows/release_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
$version = $(Get-Content -TotalCount 1 .\VERSION)
$output_file = "dist/${{ matrix.tool_fullname }}-$version-x86_64.zip"
$output_file = "dist/${{ matrix.tool_fullname }}-${{ github.ref_name }}-x86_64.zip"
mv dist/${{ matrix.tool_fullname }}.zip $output_file
gh release upload "v$version" $output_file
gh release upload ${{ github.ref_name }} $output_file
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# nope.gl

YOLO

`nope.gl` is a graphics engine for building and rendering graph-based scenes.
It is designed to run on both desktop (Linux, OSX, Windows) and mobile (Android,
iOS).
Expand Down
1 change: 0 additions & 1 deletion scripts/release-changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
output_lines.append(next(iter_lines))
except StopIteration:
print(f"Version {version} not found in the changelog", file=sys.stderr)
sys.exit(1)

output_lines += itertools.takewhile(lambda line: not line.startswith(f"## ["), iter_lines)

Expand Down