Workflow file for this run
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: Published release communication | |
on: | |
release: | |
types: | |
- published | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: apexskier/github-release-commenter@v1 | |
with: | |
GITHUB_TOKEN: ${{ github.token }} | |
comment-template: | | |
Shipped in [release `{release_tag}`]({release_link}). | |
Version `{release_tag}` will be assigned to the `latest` npm channel soon | |
Install it using either `{release_tag}` or the `latest-rc` npm channel | |
```sh | |
$ sf plugins install sfdx-git-delta@latest-rc | |
# Or | |
$ sf plugins install sfdx-git-delta@{release_tag} | |
``` | |
💡 Enjoying sfdx-git-delta? | |
Your contribution helps us provide fast support 🚀 and high quality features 🔥 | |
Become a [sponsor](https://github.com/sponsors/scolladon) 💙 | |
Happy incremental deployment! |