diff --git a/.github/workflows/tweet.yml b/.github/workflows/tweet.yml index a39540fa4..655ba7c91 100644 --- a/.github/workflows/tweet.yml +++ b/.github/workflows/tweet.yml @@ -1,29 +1,29 @@ name: "Tweet Releases" on: release: types: [published] workflow_dispatch: jobs: tweet: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: "Get Release Tag" run: | RELEASE_TAG=$(curl https://api.github.com/repos/Aiko-IT-Systems/DisCatSharp/releases/latest | jq -r '.tag_name') - name: Tweet release - uses: snow-actions/tweet@v1.3.0 + uses: Lulalaby/tweet@v1.3.0 with: status: | DisCatSharp $RELEASE_TAG is here! Checkout our GitHub Page for the changelog regarding $RELEASE_TAG Release: github.com/Aiko-IT-Systems/DisCatSharp/releases/tag/$RELEASE_TAG media_paths: | DisCatSharp.Logos/logobig.png env: CONSUMER_API_KEY: ${{ secrets.DCS_CONSUMER_KEY }} CONSUMER_API_SECRET_KEY: ${{ secrets.DCS_CONSUMER_SECRET }} ACCESS_TOKEN: ${{ secrets.DCS_ACCESS_TOKEN_KEY }} ACCESS_TOKEN_SECRET: ${{ secrets.DCS_ACCESS_TOKEN_SECRET }}