Skip to content
This repository was archived by the owner on Sep 14, 2025. It is now read-only.

Commit 2b9912e

Browse files
authored
Merge pull request #178 from lora-aprs/tweet_release
tweet release
2 parents e0f9f1f + 8652ecc commit 2b9912e

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: tweet-release
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
tweet:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: Eomm/why-don-t-you-tweet@v1
12+
if: ${{ !github.event.repository.private }}
13+
with:
14+
tweet-message: "New ${{ github.event.repository.name }} release ${{ github.event.release.tag_name }}! ${{ github.event.release.html_url }} #LoRa #APRS #HAM #hamradio #iGate"
15+
env:
16+
TWITTER_CONSUMER_API_KEY: ${{ secrets.TWITTER_CONSUMER_API_KEY }}
17+
TWITTER_CONSUMER_API_SECRET: ${{ secrets.TWITTER_CONSUMER_API_SECRET }}
18+
TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }}
19+
TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}

src/LoRa_APRS_iGate.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include "TaskWifi.h"
2121
#include "project_configuration.h"
2222

23-
#define VERSION "22.12.3"
23+
#define VERSION "22.12.4"
2424
#define MODULE_NAME "Main"
2525

2626
String create_lat_aprs(double lat);

0 commit comments

Comments
 (0)