ExRam.Gremlinq 12.6.4 #41
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Announce | |
on: | |
release: | |
types: [published] | |
jobs: | |
announce: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Send announcement tweet! | |
if: ${{ !github.event.release.prerelease }} | |
uses: dart-actions/tweet@778a594ca22c70910c9524e2455c4d85eb312d57 #1.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 #graphdbs like @AzureCosmosDB, @dotnetonAWS Neptune or @JanusGraph. | |
https://github.com/${{github.repository}} | |
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 }} |