fix: Add release pleas comment to version file #70
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
name: Release Please | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Release Please | |
id: release | |
uses: google-github-actions/release-please-action@v3 | |
with: | |
token: ${{ secrets.PAT_TOKEN }} | |
release-type: go | |
package-name: "MageComm" | |
extra-files: | | |
version.txt | |
- name: Log release info | |
run: | | |
echo "New version: ${{ steps.release.outputs.release_version }}" | |
echo "PR URL: ${{ steps.release.outputs.pr_url }}" |