Skip to content

thedevsaddam/tweet-release

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tweet-release

Usages

name: "tweet release"
on:
  release:
    types: [published]

jobs:
  release:
    runs-on: ubuntu-latest
    steps:
      - name: Tweet release
        uses: thedevsaddam/tweet-release@v1.0
        with:
          apiKey: ${{ secrets.API_KEY }}
          apiKeySecret: ${{ secrets.API_SECRET }}
          accessToken: ${{ secrets.ACCESS_TOKEN }}
          accessTokenSecret: ${{ secrets.ACCESS_TOKEN_SECRET }}
          tweet: 'Tweet release published v1.0'

NOTE: This is a test tweet release custom action