{"id":50417088,"url":"https://github.com/tonycletus/wails-release-kit","last_synced_at":"2026-05-31T06:31:02.834Z","repository":{"id":359323778,"uuid":"1245532532","full_name":"tonycletus/wails-release-kit","owner":"tonycletus","description":"CLI scaffolding for Wails desktop GitHub Releases across Windows, macOS, and Linux.","archived":false,"fork":false,"pushed_at":"2026-05-21T10:21:50.000Z","size":24,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-21T18:36:16.941Z","etag":null,"topics":["desktop","github-actions","go","release","wails"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/@tonycletus/wails-release-kit","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tonycletus.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-21T10:02:24.000Z","updated_at":"2026-05-21T10:21:54.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/tonycletus/wails-release-kit","commit_stats":null,"previous_names":["tonycletus/wails-release-kit"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/tonycletus/wails-release-kit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tonycletus%2Fwails-release-kit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tonycletus%2Fwails-release-kit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tonycletus%2Fwails-release-kit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tonycletus%2Fwails-release-kit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tonycletus","download_url":"https://codeload.github.com/tonycletus/wails-release-kit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tonycletus%2Fwails-release-kit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33722156,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-31T02:00:06.040Z","response_time":95,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["desktop","github-actions","go","release","wails"],"created_at":"2026-05-31T06:31:02.770Z","updated_at":"2026-05-31T06:31:02.823Z","avatar_url":"https://github.com/tonycletus.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# @tonycletus/wails-release-kit\n\nScaffold release automation for Go/Wails desktop apps.\n\nThis CLI creates the release files a Wails project usually needs when you want\nGitHub Actions to build desktop installers for Windows, macOS, and Linux from\nthe same source repository.\n\nIt generates:\n\n- GitHub Actions workflow for Windows `.exe` installer, macOS `.dmg`, Linux `.deb`\n- Inno Setup script\n- Windows icon resource script\n- Stable latest release asset names for download pages\n- Versioned release assets for traceability\n\n## Install\n\n```bash\nnpm install -D @tonycletus/wails-release-kit\npnpm add -D @tonycletus/wails-release-kit\nyarn add -D @tonycletus/wails-release-kit\n```\n\n## Init a Wails project\n\n```bash\nnpx wails-release-kit init --app \"My App\" --binary \"my-app\" --repo your-name/my-app\n```\n\nRun that command in the root of an existing Wails project. It writes:\n\n- `.github/workflows/desktop-release.yml`\n- `installer/windows/App.iss`\n- `scripts/prepare-windows-icon-resource.ps1`\n- `RELEASE-DOWNLOADS.md`\n\nThen commit and push. Every push to `main` builds desktop packages and creates\nor updates a GitHub Release for the current `package.json` version.\n\n## Requirements\n\n- A Wails v2 app written in Go\n- Node.js 20 or newer\n- A working `npm run build:desktop` script\n- A `public/icon-512.png` source icon for Windows installer/icon generation\n- GitHub Actions enabled on the repository\n\nThe generated workflow installs the operating system dependencies it needs on\nGitHub-hosted runners.\n\n## Stable Download URLs\n\nUse these on your app's download page:\n\n```text\nhttps://github.com/\u003cowner\u003e/\u003crepo\u003e/releases/latest/download/\u003cAppName\u003eSetup.exe\nhttps://github.com/\u003cowner\u003e/\u003crepo\u003e/releases/latest/download/\u003cAppName\u003e-macos-arm64.dmg\nhttps://github.com/\u003cowner\u003e/\u003crepo\u003e/releases/latest/download/\u003capp-name\u003e-linux-amd64.deb\n```\n\nEach release also includes versioned assets so you can keep permanent links for\nolder builds.\n\n## What It Does Not Do\n\nThis kit does not buy or configure code signing certificates. It also does not\ncomplete Apple notarization for you. The generated workflow is intended as a\npractical unsigned/community release baseline that you can extend when your app\nneeds commercial distribution requirements.\n\n## Notes\n\nAlways review generated workflow files before publishing a production app. They\nare meant to give you a strong starting point, not hide your release process.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftonycletus%2Fwails-release-kit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftonycletus%2Fwails-release-kit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftonycletus%2Fwails-release-kit/lists"}