All Projects → elgohr → Github-Release-Action

elgohr / Github-Release-Action

Licence: MIT license
Publish Github releases in an action

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to Github-Release-Action

wisdom
🎁 Tool for publishing releases to github and npm
Stars: ✭ 16 (-84%)
Mutual labels:  publishing, release, publish
Bintray Publish
Super easy way to publish your Android and Java artifacts to bintray.
Stars: ✭ 97 (-3%)
Mutual labels:  publishing, release, publish
sonatype-publish-plugin
Gradle Plugin for publishing artifacts to Sonatype and Nexus
Stars: ✭ 17 (-83%)
Mutual labels:  publishing, publish
Auto
Generate releases based on semantic version labels on pull requests.
Stars: ✭ 1,120 (+1020%)
Mutual labels:  publishing, release
Publish Nuget
📦 GitHub action to automate publishing NuGet packages when project version changes
Stars: ✭ 109 (+9%)
Mutual labels:  publishing, release
Github
semantic-release plugin to publish a GitHub release and comment on released Pull Requests/Issues
Stars: ✭ 159 (+59%)
Mutual labels:  release, publish
Semantic Release
📦🚀 Fully automated version management and package publishing
Stars: ✭ 14,364 (+14264%)
Mutual labels:  release, publish
Please
please is semver release made easy
Stars: ✭ 72 (-28%)
Mutual labels:  publishing, release
Git Release
Publish a GitHub Release 📦 with Assets 📁 and Changelog 📄
Stars: ✭ 77 (-23%)
Mutual labels:  release, publish
xyz
Publish npm packages with fewer screw-ups
Stars: ✭ 101 (+1%)
Mutual labels:  release, publish
chrome-extension-upload
upload & publish extensions to the Chrome Web Store.
Stars: ✭ 35 (-65%)
Mutual labels:  release, action
Commit Analyzer
💡 semantic-release plugin to analyze commits with conventional-changelog
Stars: ✭ 146 (+46%)
Mutual labels:  release, publish
Release Notes Generator
📋 semantic-release plugin to generate changelog content with conventional-changelog
Stars: ✭ 123 (+23%)
Mutual labels:  release, publish
apple-news
A Node.js client for interacting with the Apple News API 📰
Stars: ✭ 34 (-66%)
Mutual labels:  publishing, publish
Npm
🚢 semantic-release plugin to publish a npm package
Stars: ✭ 103 (+3%)
Mutual labels:  release, publish
prepublish
Simplifies the prepare step (bundling, transpiling, rebasing) during publishing NPM packages.
Stars: ✭ 21 (-79%)
Mutual labels:  release, publish
Condition Travis
🚫 semantic-release plugin to check Travis CI environment before publishing.
Stars: ✭ 9 (-91%)
Mutual labels:  release, publish
Automatic Release
Automates the release process for GitHub projects.
Stars: ✭ 46 (-54%)
Mutual labels:  release, publish
release-changelog-builder-action
A GitHub action that builds your release notes / changelog fast, easy and exactly the way you want.
Stars: ✭ 515 (+415%)
Mutual labels:  release, action
dart-package-publisher
Action to Publish Dart / Flutter Package To https://pub.dev When you need to publish a package, just bump the version in pubspec.yaml
Stars: ✭ 45 (-55%)
Mutual labels:  publish, action

Github-Release-Action

Actions Status

Publish Github releases

Usage

name: Publish Release
on:
  push:
    tags:
      - 'v*'
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3
    - name: Create a Release
      uses: elgohr/Github-Release-Action@v4
      env:
        GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
      with:
        title: MyReleaseMessage

Please note, that you can't use ${{ secrets.GITHUB_TOKEN }} as it isn't allowed to publish releases.

Argument

The message which should appear in the release. May not contain spaces.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].