mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-20 23:12:13 +00:00
Merge pull request #151 from Stremio/release-asset-action
Release action configured with github packages
This commit is contained in:
commit
3af4ffa548
1 changed files with 8 additions and 3 deletions
11
.github/workflows/release.yml
vendored
11
.github/workflows/release.yml
vendored
|
|
@ -13,10 +13,15 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
|
name: Checkout
|
||||||
|
- uses: actions/setup-node@v1
|
||||||
|
name: Setup Node
|
||||||
|
with:
|
||||||
|
registry-url: 'https://npm.pkg.github.com'
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: yarn install && yarn build
|
||||||
echo -e "[url \"https://github.com/\"]\n\tinsteadOf = ssh://git@github.com/" > ~/.gitconfig
|
env:
|
||||||
yarn install && yarn build
|
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- run: zip -r stremio-web.zip ./build
|
- run: zip -r stremio-web.zip ./build
|
||||||
- name: Upload binaries to release
|
- name: Upload binaries to release
|
||||||
uses: svenstaro/upload-release-action@v1-release
|
uses: svenstaro/upload-release-action@v1-release
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue