Skip to content

Commit

Permalink
Merge pull request #33 from gptscript-ai/dispatch
Browse files Browse the repository at this point in the history
chore: add back dispatch jobs
  • Loading branch information
thedadams authored Jun 27, 2024
2 parents 65fe72c + aadf56f commit 09dec27
Showing 1 changed file with 37 additions and 0 deletions.
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') }}

0 comments on commit 09dec27

Please sign in to comment.