1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2024-11-24 08:32:50 +02:00

Optimized/Fixed Tweet action

This commit is contained in:
DerLinkman 2022-11-16 18:34:22 +01:00
parent 3236a10cf5
commit 17f3cc3ad8

View File

@ -7,10 +7,10 @@ jobs:
tweet:
runs-on: ubuntu-latest
steps:
- name: "Install jq"
run: apt update && apt install jq --no-install-recommends -y
- name: "Get Release Tag"
run: curl https://api.github.com/repos/mailcow/mailcow-dockerized/releases/latest | jq '.tag_name' | sed 's/"//g' >> $RELEASE_TAG
run: |
RELEASE_TAG=$(curl https://api.github.com/repos/mailcow/mailcow-dockerized/releases/latest | jq -r '.tag_name')
echo "RELEASE_TAG=$RELEASE_TAG" >> $GITHUB_ENV
- name: Tweet-trigger-publish-release
uses: mugi111/tweet-trigger-release@v1.1
with:
@ -19,3 +19,5 @@ jobs:
access_token_key: ${{ secrets.ACCESS_TOKEN_KEY }}
access_token_secret: ${{ secrets.ACCESS_TOKEN_SECRET }}
tweet_body: '$RELEASE_TAG is here! Checkout the GitHub Page for changelog regarding the $RELEASE_TAG Release: github.com/mailcow/mailcow-dockerized/releases/tag/$RELEASE_TAG'
env:
RELEASE_TAG: ${{ env.RELEASE_TAG }}