We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c8cd01 commit 97d1966Copy full SHA for 97d1966
.github/workflows/release.yml
@@ -42,4 +42,15 @@ jobs:
42
prerelease: ${{ steps.nextVersion.outputs.isPrerelease }}
43
commitish: ${{ steps.commit.outputs.commitish }}
44
env:
45
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
46
+
47
+ dispatch:
48
+ runs-on: ubuntu-latest
49
+ needs: [ release ]
50
+ if: github.repository == 'VisualPinball/NativeTrees' && github.ref == 'refs/heads/main' && github.event_name == 'push'
51
+ steps:
52
+ - uses: peter-evans/repository-dispatch@v1
53
+ with:
54
+ token: ${{ secrets.GH_PAT }}
55
+ event-type: release-complete
56
+ client-payload: '{"artifacts_run_id": "${{ github.run_id }}"}'
0 commit comments