forked from sharafas-om/batch.dart
-
Notifications
You must be signed in to change notification settings - Fork 1
30 lines (26 loc) · 966 Bytes
/
release.yml
File metadata and controls
30 lines (26 loc) · 966 Bytes
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
name: Release
on:
push:
tags:
- v*
jobs:
publishing:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Check release validity
run: sh .github/scripts/check-release.sh
- name: Tweet
uses: snow-actions/tweet@v1.1.2
with:
status: |
Hey what's up?🍿 New version of Batch.dart was released!🐦🐦🐦
Release note: https://github.com/batch-dart/batch.dart/blob/main/CHANGELOG.md
#dart #framework #github #pubdev
This tweet was sent from GitHub Actions workflow at https://github.com/batch-dart/batch.dart
env:
CONSUMER_API_KEY: ${{ secrets.TWITTER_CONSUMER_API_KEY }}
CONSUMER_API_SECRET_KEY: ${{ secrets.TWITTER_CONSUMER_API_SECRET_KEY }}
ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }}
ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}