Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix workflow #1745

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
contains(github.ref, 'refs/heads/master')
|| contains(github.ref, 'refs/heads/beta-v7')
|| contains(github.ref, 'refs/heads/beta')
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: lib
path: lib
Expand All @@ -66,7 +66,7 @@ jobs:
contains(github.ref, 'refs/heads/master')
|| contains(github.ref, 'refs/heads/beta-v7')
|| contains(github.ref, 'refs/heads/beta')
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: types
path: types
Expand All @@ -75,7 +75,7 @@ jobs:
contains(github.ref, 'refs/heads/master')
|| contains(github.ref, 'refs/heads/beta-v7')
|| contains(github.ref, 'refs/heads/beta')
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: bundle
path: lib/frontend/assets/scripts
Expand Down Expand Up @@ -139,17 +139,17 @@ jobs:
- name: Install
run: yarn install
- name: Download Build
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: lib
path: lib
- name: Download Types
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: types
path: types
- name: Download Bundle
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: bundle
path: bundle
Expand Down
Loading