Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Davilarek authored Sep 15, 2024
1 parent 99a313d commit 741e47f
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,24 @@ jobs:
run: |
pnpm install
pnpm dist
- name: Store dist location
run: |
echo "DIST_LOC=$(pwd)" >> $GITHUB_ENV
- name: Clone BrowserFS-builds repository
uses: actions/checkout@v4
with:
repository: LosersUnited/BrowserFS-builds
- name: Move dist
run: |
mv dist BrowserFS-builds/dist
mv $DIST_LOC/dist ./dist
# - uses: EndBug/add-and-commit@v9
# with:
# cwd: './BrowserFS-builds'
# default_author: github_actions
# message: 'Automatic build based on ${{ steps.commit.outputs.hash }}'
- run: |
cd ./BrowserFS-builds
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "Automatic build based on ${{ steps.commit.outputs.hash }}"
git push

0 comments on commit 741e47f

Please sign in to comment.