{"id":15512621,"url":"https://github.com/stefansundin/github-release-party","last_synced_at":"2025-08-01T05:05:07.080Z","repository":{"id":31090414,"uuid":"34649497","full_name":"stefansundin/github-release-party","owner":"stefansundin","description":":gem: :octocat: Create GitHub releases when you deploy to Fly. (Gem)","archived":false,"fork":false,"pushed_at":"2025-02-27T22:47:59.000Z","size":48,"stargazers_count":6,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-07T07:59:54.245Z","etag":null,"topics":["gem","github","heroku"],"latest_commit_sha":null,"homepage":"https://rubygems.org/gems/github-release-party","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stefansundin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":["stefansundin"],"patreon":"stefansundin","ko_fi":"stefansundin","custom":"https://paypal.me/stefansundin"}},"created_at":"2015-04-27T06:21:39.000Z","updated_at":"2025-02-27T22:48:02.000Z","dependencies_parsed_at":"2024-01-06T06:45:00.105Z","dependency_job_id":"f428d94f-2cc1-44f6-9024-a8140f9ae4fa","html_url":"https://github.com/stefansundin/github-release-party","commit_stats":{"total_commits":57,"total_committers":2,"mean_commits":28.5,"dds":0.01754385964912286,"last_synced_commit":"977c3d4c523f441fc67572a1f71bf94625b4b18a"},"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"purl":"pkg:github/stefansundin/github-release-party","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stefansundin%2Fgithub-release-party","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stefansundin%2Fgithub-release-party/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stefansundin%2Fgithub-release-party/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stefansundin%2Fgithub-release-party/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stefansundin","download_url":"https://codeload.github.com/stefansundin/github-release-party/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stefansundin%2Fgithub-release-party/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267408535,"owners_count":24082516,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-27T02:00:11.917Z","response_time":82,"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":["gem","github","heroku"],"created_at":"2024-10-02T09:53:45.241Z","updated_at":"2025-08-01T05:05:07.028Z","avatar_url":"https://github.com/stefansundin.png","language":"Ruby","readme":"# github-release-party\n\n\u003e Automatically create GitHub releases when you deploy.\n\nI use this gem to automatically create GitHub releases when I deploy. Creating releases helps your users/coworkers/boss to keep up with what's new.\n\nThe gem includes rake tasks to deploy to Fly and Heroku. Please submit any improvements as issues.\n\nExample result:\n- Release page: https://github.com/stefansundin/rssbox/releases\n- RSS Feed: https://github.com/stefansundin/rssbox/releases.atom\n\n\n## Installation\n\n### Setup\n\nYou need to provide a GitHub access token so that the gem can create the GitHub release after the deployment has finished. There are two different kinds of GitHub access tokens:\n- The recommended token is [a fine-grained token](https://github.com/settings/personal-access-tokens). Add only the repositories required and grant `Read and write` access to \"Contents\" only.\n- You can also create [a classic token](https://github.com/settings/tokens). Limit the scope to `repo`.\n\n**Keep your token secure! Don't commit it to a public repo!**\n\nYou need to set the environment variable `GITHUB_RELEASE_TOKEN` with the token as the value. A good place to do this is in your `.bash_profile`:\n\n```bash\nexport GITHUB_RELEASE_TOKEN=token12345\n```\n\n### App\n\nAdd the gem to your Gemfile:\n\n```ruby\ngroup :development do\n  gem \"github-release-party\", require: false\nend\n```\n\nThis gem is cryptographically signed, you can verify the installation with:\n\n```bash\ngem cert --add \u003c(curl -Ls https://raw.githubusercontent.com/stefansundin/github-release-party/main/certs/stefansundin.pem)\ngem install github-release-party -P MediumSecurity\n```\n\nRequire the `fly` task in your `Rakefile`:\n\n```ruby\nenvironment = ENV[\"APP_ENV\"] || ENV[\"RACK_ENV\"] || \"development\"\nif environment == \"development\"\n  require \"github-release-party/tasks/fly\"\nend\n```\n\nThen deploy with:\n\n```bash\nrake deploy\n```\n\nYou also get `rake deploy:force`, `rake deploy:tag`, and `rake deploy:retag`.\n\nWhen deploying, a tag `fly/vXXX` (where `XXX` is the Fly version number) will be created, and then a GitHub release will be created for it.\n\n`rake deploy:tag` can be run if you deployed to fly manually.\n\nIf this gem updates the message format it uses for the releases, you can run `rake deploy:retag` to update the text in the tags and releases.\n\n### Heroku\n\n_Note: I no longer use Heroku so there are no guarantees that this will continue to work._\n\nRequire the `heroku` task in your `Rakefile`:\n\n```ruby\nenvironment = ENV[\"APP_ENV\"] || ENV[\"RACK_ENV\"] || \"development\"\nif environment == \"development\"\n  require \"github-release-party/tasks/heroku\"\nend\n```\n\nIn normal use, the Heroku toolbelt is not required. The release number is read from the git push output. Your Heroku remote must be named `heroku`.\n","funding_links":["https://github.com/sponsors/stefansundin","https://patreon.com/stefansundin","https://ko-fi.com/stefansundin","https://paypal.me/stefansundin"],"categories":["Ruby"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstefansundin%2Fgithub-release-party","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstefansundin%2Fgithub-release-party","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstefansundin%2Fgithub-release-party/lists"}