chore(main): release 0.9.6 (#136) #29
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
--- | |
"on": | |
push: | |
branches: [main] | |
name: Release | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: google-github-actions/release-please-action@v3 | |
id: release | |
with: | |
release-type: ruby | |
package-name: kitchen-hyperv | |
version-file: lib/kitchen/driver/hyperv_version.rb | |
token: ${{ secrets.PUBLISH_WORKFLOW_TOKEN }} | |
signoff: "Dan Webb <[email protected]>" | |
changelog-notes-type: github | |
- name: Build and publish to GitHub Package | |
if: ${{ steps.release.outputs.release_created }} | |
uses: actionshub/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
owner: ${{ secrets.OWNER }} | |
- name: Build and publish to RubyGems | |
if: ${{ steps.release.outputs.release_created }} | |
uses: actionshub/[email protected] | |
with: | |
api_key: ${{ secrets.RUBYGEMS_API_KEY }} |