chore: using different marketplace action. #2
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: Post Tweet on Push | |
on: push | |
jobs: | |
tweet: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Post a tweet on push | |
uses: julb/action-post-twitter-status@v1 | |
with: | |
status: "🚀 Code has been pushed to the repository!" | |
consumer-key: ${{ secrets.TWITTER_API_KEY }} | |
consumer-secret: ${{ secrets.TWITTER_API_SECRET_KEY }} | |
access-token: ${{ secrets.TWITTER_ACCESS_TOKEN }} | |
access-token-secret: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }} |