chore: fix release-tweet action (#46036)

Signed-off-by: afc163 <afc163@gmail.com>
This commit is contained in:
afc163
2023-11-23 11:32:48 +08:00
committed by GitHub
parent ea569703e5
commit b34259ca1c

View File

@@ -8,14 +8,14 @@ permissions:
jobs:
tweet:
if: github.event.ref_type == 'tag'
if: ${{ github.event.ref_type == 'tag' && !contains(github.event.ref, 'alpha') }}
runs-on: ubuntu-latest
steps:
- name: Tweet
uses: nearform-actions/github-action-notify-twitter@v1
with:
message: |
Ant Design (antd@${{ github.event.release.tag_name }}) has been released ~ 🎊🎊🎊 Check out the release notes: ${{ github.event.release.html_url }}
🤖 Ant Design just released antd@${{ github.event.ref }} ✨🎊✨ Check out the full release note: https://github.com/ant-design/ant-design/releases/tag/${{ github.event.ref }}
twitter-app-key: ${{ secrets.TWITTER_API_KEY }}
twitter-app-secret: ${{ secrets.TWITTER_API_SECRET_KEY }}
twitter-access-token: ${{ secrets.TWITTER_ACCESS_TOKEN }}