Skip to content

Commit

Permalink
Add readme to build process
Browse files Browse the repository at this point in the history
  • Loading branch information
koerismo committed Aug 4, 2023
1 parent 79867a5 commit b9c6d3f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/run-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,23 @@ jobs:
npm run build
npm run build:csgo
- name: Copy files to dist
run: cp LICENSE README.md dist

- name: Configure git
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Action"
git fetch --all
git checkout --track origin/build
- name: Copy files
- name: Copy dist to root
run: cp -r ./dist/* ./

- name: Commit files
run: |
git add *.d.ts
git add README.md
git push
git commit -m "Automated build on ${{ github.ref }}"
git push origin build

0 comments on commit b9c6d3f

Please sign in to comment.