We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
One addition that would be helpful is being able to bump the version number along with the release.
Here's an example implementation I made with GitHub Actions that accepts the version as a String input in the Actions UI on the web for reference:
name: Publish Gem on: workflow_dispatch: inputs: version: description: "Version" required: true type: string jobs: test: uses: ./.github/workflows/ci.yml push: needs: test runs-on: ubuntu-latest permissions: contents: write id-token: write steps: - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: bundler-cache: true ruby-version: ruby - name: Update version run: | sed -i 's/".*"/"${{ inputs.version }}"/' lib/noticed/version.rb bundle config set --local deployment 'false' bundle bundle exec appraisal git config user.name 'GitHub Actions' git config user.email [email protected] git add Gemfile.lock gemfiles lib git commit -m "Version bump" git push - uses: rubygems/release-gem@v1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
One addition that would be helpful is being able to bump the version number along with the release.
Here's an example implementation I made with GitHub Actions that accepts the version as a String input in the Actions UI on the web for reference:
The text was updated successfully, but these errors were encountered: