-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
db4c463
commit f28e910
Showing
3 changed files
with
68 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# .github/workflows/release.yml | ||
|
||
name: Publish to Rubygems | ||
|
||
on: | ||
workflow_run: | ||
workflows: [Tests] | ||
types: [completed] | ||
branches: [main] | ||
|
||
jobs: | ||
release: | ||
environment: release | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Create release | ||
- uses: GoogleCloudPlatform/release-please-action@v3 | ||
with: | ||
release-type: ruby | ||
command: github-release | ||
package-name: logstasher | ||
bump-minor-pre-major: true | ||
# Path to our version file to increment | ||
version-file: "lib/logstasher/version.rb" | ||
token: "${{secrets.GITHUB_TOKEN}}" | ||
# Checkout code if release was created | ||
- uses: actions/checkout@v2 | ||
if: ${{ steps.release.outputs.release_created }} | ||
# Setup ruby if a release was created | ||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 3.0.0 | ||
if: ${{ steps.release.outputs.release_created }} | ||
# Bundle install | ||
- run: bundle install | ||
if: ${{ steps.release.outputs.release_created }} | ||
# Publish to GPR | ||
- name: Publish to GPR | ||
run: | | ||
mkdir -p $HOME/.gem | ||
touch $HOME/.gem/credentials | ||
chmod 0600 $HOME/.gem/credentials | ||
printf -- "---\n:github: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials | ||
gem build *.gemspec | ||
gem push --KEY github --host https://rubygems.pkg.github.com/${OWNER} *.gem | ||
env: | ||
GEM_HOST_API_KEY: "Bearer ${{secrets.GITHUB_TOKEN}}" | ||
OWNER: ${{ github.repository_owner }} | ||
if: ${{ steps.release.outputs.release_created }} | ||
# Publish gem to Rubygems | ||
- name: Publish to Rubygems | ||
run: | | ||
mkdir -p $HOME/.gem | ||
touch $HOME/.gem/credentials | ||
chmod 0600 $HOME/.gem/credentials | ||
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials | ||
gem build *.gemspec | ||
gem push *.gem | ||
env: | ||
# Make sure to update the secret name | ||
# if yours isn't named RUBYGEMS_AUTH_TOKEN | ||
GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}" | ||
if: ${{ steps.release.outputs.release_created }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# 2.1.5 | ||
* Ruby 3.0 and Rails 6 support | ||
|
||
# 1.2.2 | ||
* Merge from #142 - Fix bug in detection of ActiveJob | ||
|
||
|