Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .github/workflows/dispatch.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Update GPTScript Version
on:
repository_dispatch:
types: release

jobs:
update-gptscript-dep:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.BOT_GH_TOKEN }}
- name: Update GPTScript Version
run: |
TAG=${{ github.event.client_payload.tag }}
VERSION="${TAG#v}"
sed -i 's/version = ".*"/version = "'${VERSION}'"/' pyproject.toml
sed -i 's/"version": "v.*"/"version": "'${TAG}'"/' gptscript/install.py
sed -i 's/"version": "v.*"/"version": "'${TAG}'"/' scripts/package
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install deps
run: |
pip install -r requirements.txt
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Automated GPTScript Version Update
file_pattern: 'pyproject.toml gptscript/install.py scripts/package'
tagging_message: ${{ github.event.client_payload.tag }}
- name: Create a GitHub release
uses: ncipollo/release-action@v1
with:
tag: ${{ github.event.client_payload.tag }}
name: Release ${{ github.event.client_payload.tag }}
generateReleaseNotes: true
prerelease: ${{ contains(github.event.client_payload.tag, '-rc') }}