diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index 1eb8e95..841f83a 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -21,6 +21,10 @@ jobs: shell: pwsh run: | Install-Module -Name PSPKI -Repository PSGallery -Force + - name: Install PSSharedGoods module + shell: pwsh + run: | + Install-Module -Name PSSharedGoods -Repository PSGallery -Force - name: Test Module Manifest shell: pwsh run: | @@ -29,18 +33,3 @@ jobs: shell: pwsh run: | Publish-Module -Path ./ -NuGetApiKey ${{ secrets.PSGALLERY_API_KEY }} -Verbose - tweet: - runs-on: ubuntu-latest - steps: - - uses: Eomm/why-don-t-you-tweet@v1 - # We don't want to tweet if the repository is not a public one - if: ${{ !github.event.repository.private }} - with: - # GitHub event payload - # https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#release - tweet-message: "[New Release] ${{ github.event.repository.name }} ${{ github.event.release.tag_name }}! Check out what's new! ${{ github.event.release.html_url }} #AsBuiltReport #PowerShell #Microsoft #Activedirectory #MVP" - env: - TWITTER_CONSUMER_API_KEY: ${{ secrets.TWITTER_CONSUMER_API_KEY }} - TWITTER_CONSUMER_API_SECRET: ${{ secrets.TWITTER_CONSUMER_API_SECRET }} - TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }} - TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }} \ No newline at end of file