-
-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (50 loc) · 1.8 KB
/
twitter-post.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: Twitter Post On Release
env:
VS_WORKFLOW_TYPE: "twitter-post"
on:
release:
types:
- published
jobs:
twitter_post:
name: "🐦 Tweet"
runs-on: ubuntu-latest
steps:
- name: "📥 Fetching Repository Contents"
uses: actions/checkout@master
- name: "💾 Github Repository Metadata"
uses: varunsridharan/action-repository-meta@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: "💫 VS Utility"
uses: varunsridharan/action-vs-utility@master
env:
SVA_ONL_TOKEN: ${{ secrets.SVA_ONL_TOKEN }}
- name: "⚡ Repository - Before Hook"
run: |
echo " "
if [ -f $VS_BEFORE_HOOK_FILE_LOCATION ]; then
echo "✅ Before Hook File Found : $VS_BEFORE_HOOK_FILE_LOCATION"
sh $VS_BEFORE_HOOK_FILE_LOCATION
else
echo "⚠️ No Before Hook File Found : $VS_BEFORE_HOOK_FILE_LOCATION"
fi
echo " "
- name: "🚀 Publishing Tweet 🐦 "
uses: m1ner79/Github-Twittction@master
with:
twitter_status: ${{ env.TWITTER_STATUS }}
twitter_consumer_key: ${{ secrets.TWITTER_API_KEY }}
twitter_consumer_secret: ${{ secrets.TWITTER_API_SECRET_KEY }}
twitter_access_token_key: ${{ secrets.TWITTER_ACCESS_TOKEN }}
twitter_access_token_secret: ${{ secrets.TWITTER_ACCESS_SECRET_TOKEN }}
- name: "⚡ Repository - After Hook"
run: |
echo " "
if [ -f $VS_AFTER_HOOK_FILE_LOCATION ]; then
echo "✅ After Hook File Found : $VS_AFTER_HOOK_FILE_LOCATION"
sh $VS_AFTER_HOOK_FILE_LOCATION
else
echo "⚠️ No After Hook File Found : $VS_AFTER_HOOK_FILE_LOCATION"
fi
echo " "