Skip to content

Commit

Permalink
Update GitHub Actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ben221199 committed May 30, 2024
1 parent 43158b0 commit 48d24f2
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: corepack enable
- run: yarn
- run: yarn lint
Expand All @@ -29,8 +29,8 @@ jobs:
runs-on: ${{ matrix.os }}
continue-on-error: true
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: corepack enable
Expand Down Expand Up @@ -93,23 +93,24 @@ jobs:
KNOWN_APP_DOMAINS: lbry.tv,lbry.lat,odysee.com
CHANNEL_STAKED_LEVEL_VIDEO_COMMENTS: 0

- uses: actions/upload-artifact@v2.2.4
- uses: actions/upload-artifact@v4
if: |
startsWith(runner.os, 'linux')
with:
name: Linux
path: ./dist/electron/*.*

- uses: actions/upload-artifact@v2.2.4
- uses: actions/upload-artifact@v4
if: |
startsWith(runner.os, 'mac')
with:
name: macOS
path: ./dist/electron/*.*

- uses: actions/upload-artifact@v2.2.4
- uses: actions/upload-artifact@v4
if: |
startsWith(runner.os, 'windows')
startsWith(runner.os, 'windows')
with:
name: Windows
path: ./dist/electron/*.*
Expand Down

0 comments on commit 48d24f2

Please sign in to comment.