We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22e0293 commit 224ae19Copy full SHA for 224ae19
.github/workflows/release.yaml
@@ -42,3 +42,14 @@ jobs:
42
run: |
43
$url = "${{ github.server_url }}/${{ github.repository }}/releases/download/${{ github.ref_name }}/gptscript-${{ github.ref_name }}-windows-amd64.zip"
44
./wingetcreate.exe update --submit --token "${{ secrets.WINGET_GH_TOKEN }}" --urls $url --version "${{ github.ref_name }}" gptscript-ai.gptscript
45
+ node-release:
46
+ needs: release-tag
47
+ runs-on: ubuntu-latest
48
+ steps:
49
+ - name: trigger dispatch
50
+ uses: peter-evans/repository-dispatch@v3
51
+ with:
52
+ token: ${{ secrets.DISPATCH_PAT }}
53
+ repository: gptscript-ai/node-gptscript
54
+ event-type: release
55
+ client-payload: '{"tag": "${{ github.ref_name }}"}'
0 commit comments