ExRam.Gremlinq 12.11.1 #54
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: | | |
We announce the release of ExRam.Gremlinq ${{ github.event.release.tag_name }}! | |
ExRam.Gremlinq is the first .NET object-graph-mapper for @apachetinkerpop enabled graph-databases like @dotnetonAWS Neptune, @AzureCosmosDB and @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 }} |