Skip to content

Commit

Permalink
Merge pull request nf-core#2405 from mirpedrol/tweet-gha
Browse files Browse the repository at this point in the history
remove inexisten variable VERSION from send-tweet github workflow
  • Loading branch information
mirpedrol authored Aug 21, 2023
2 parents 2294140 + f4c9057 commit dbcf50f
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ jobs:
consumer_key=os.getenv("TWITTER_CONSUMER_KEY"),
consumer_secret=os.getenv("TWITTER_CONSUMER_SECRET"),
)
version = os.getenv("VERSION").strip('"')
tweet = os.getenv("TWEET").format(version=version)
tweet = os.getenv("TWEET")
client.create_tweet(text=tweet)
env:
TWEET: |
Expand Down

0 comments on commit dbcf50f

Please sign in to comment.