Skip to content

Commit

Permalink
added commit
Browse files Browse the repository at this point in the history
  • Loading branch information
huseinzol05 committed Aug 25, 2024
1 parent 397b3f3 commit 0b78aee
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,22 @@ jobs:
- name: Run build
run: npm run build

- name: Configure git
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "[email protected]"
- name: Add and commit dist/nous-chat.js
run: |
git add dist/nous-chat.js
git commit -m "Add dist/nous-chat.js from release build"
git push origin HEAD:${{ github.ref }}
- name: Push changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: git push

- name: Upload dist/nous-chat.js to release
uses: actions/upload-release-asset@v1
env:
Expand Down

0 comments on commit 0b78aee

Please sign in to comment.