Skip to content

Commit

Permalink
ci(github): change build destination in workflow build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
remarkablemark committed Jul 1, 2024
1 parent 1ba17f8 commit a189547
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@ jobs:

- name: Build web
run: |
renpy-launcher web_build . --destination web
cp web-presplash.jpg web/web-presplash.jpg
renpy-launcher web_build . --destination ../dist
cp web-presplash.jpg ../dist/web-presplash.jpg
- name: Deploy
if: github.ref_name == 'master'
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: web
folder: ../dist

- name: Upload artifacts
if: github.ref_name == 'master'
uses: actions/upload-artifact@v4
with:
name: web_build
path: web
path: ../dist

0 comments on commit a189547

Please sign in to comment.