diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..dbb47cf --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,64 @@ +# .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 + id: release + 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 }} \ No newline at end of file diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c917ef5..b82c5ac 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -3,12 +3,12 @@ name: Tests on: pull_request: branches: - - master + - main paths-ignore: - 'README.md' push: branches: - - master + - main paths-ignore: - 'README.md' diff --git a/CHANGELOG.md b/CHANGELOG.md index a9143a3..375de0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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