Skip to content

Commit

Permalink
Merge branch 'development' into feat/external-moonplayer-url-support-…
Browse files Browse the repository at this point in the history
…for-ios
  • Loading branch information
elpiel committed Jul 29, 2024
2 parents 313222c + aff290c commit 8ff61b2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
- name: Copy release package archive
if: ${{ ! startsWith(github.ref, 'refs/pull/') }}
working-directory: stremio-core-web
run: cp ./*.tgz ./build/${{ github.ref_name }}
run: mv ./*.tgz ./build/${{ github.ref_name }}

- name: Build (dev)
working-directory: stremio-core-web
Expand All @@ -115,7 +115,7 @@ jobs:
- name: Copy dev package archive
if: ${{ ! startsWith(github.ref, 'refs/pull/') }}
working-directory: stremio-core-web
run: cp ./*.tgz ./build/${{ github.ref_name }}/dev
run: mv ./*.tgz ./build/${{ github.ref_name }}/dev

- name: Deploy gh-pages
if: ${{ ! startsWith(github.ref, 'refs/pull/') && github.actor != 'dependabot[bot]' }}
Expand All @@ -127,4 +127,6 @@ jobs:
# in stremio, we use `feat/features-name` or `fix/this-bug`
# so we need a recursive creation of the destination dir!
destination_dir: ./stremio-core-web/
# otherwise it clears all existing files and folders in stremio-core-web subdir in gh-pages.
keep_files: true
allow_empty_commit: true

0 comments on commit 8ff61b2

Please sign in to comment.