Skip to content

Commit

Permalink
Use yet another action for tweeting.
Browse files Browse the repository at this point in the history
  • Loading branch information
danielcweber committed Sep 2, 2023
1 parent bb2e593 commit 20f8a69
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions .github/workflows/announce.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Send announcement tweet!
if: ${{ !github.event.release.prerelease }}
uses: snow-actions/tweet@v1.4.0
with:
status: |
Announcing the release of ExRam.Gremlinq ${{ github.event.release.tag_name }}!
- name: Send announcement tweet!
if: ${{ !github.event.release.prerelease }}
uses: dart-actions/tweet@v1.0.1
with:
text: |
Announcing the release of ExRam.Gremlinq ${{ github.event.release.tag_name }}!
ExRam.Gremlinq is the first #dotnet object-graph-mapper for @apachetinkerpop #gremlin enabled #graphdb‎s like @AzureCosmosDB, @dotnetonAWS Neptune or @JanusGraph.
ExRam.Gremlinq is the first #dotnet object-graph-mapper for @apachetinkerpop #gremlin enabled #graphdb‎s like @AzureCosmosDB, @dotnetonAWS Neptune or @JanusGraph.
${{ github.event.release.html_url }}
env:
CONSUMER_API_KEY: ${{ secrets.TWITTER_CONSUMER_API_KEY }}
CONSUMER_API_SECRET_KEY: ${{ secrets.TWITTER_CONSUMER_API_SECRET }}
ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }}
ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}
${{ github.event.release.html_url }}
consumer-key: ${{ secrets.TWITTER_CONSUMER_API_KEY }}
consumer-secret: ${{ secrets.TWITTER_CONSUMER_API_SECRET }}
access-token: ${{ secrets.TWITTER_ACCESS_TOKEN }}
access-token-secret: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}

0 comments on commit 20f8a69

Please sign in to comment.