feat: add command for viewing gh-fzf's changelog #51
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 | |
on: | |
push: | |
branches: [main] | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
release-please: | |
name: release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: google-github-actions/release-please-action@v3.7.9 | |
id: release | |
with: | |
release-type: simple | |
package-name: gh-fzf | |
token: ${{ secrets.GITHUB_TOKEN }} | |
default-branch: main | |
extra-files: | | |
gh-fzf | |
.github/ISSUE_TEMPLATE/bug.yml | |
plugins: sentence-case | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
ref: main | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: tag stable versions | |
if: ${{ steps.release.outputs.release_created }} | |
run: | | |
git config user.name github-actions[bot] | |
git config user.email github-actions[bot]@users.noreply.github.com | |
git tag -fa stable -m "Current Stable Release" | |
git push -f origin stable |