Skip to content
Merged
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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
working-directory: app

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: actions/setup-node@v4
- uses: actions/setup-node@v7
with:
node-version: '22'
cache: 'npm'
Expand All @@ -34,7 +34,7 @@ jobs:

- name: Upload coverage report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: coverage
path: app/coverage/
Expand All @@ -48,7 +48,7 @@ jobs:
contents: write # needed to create GitHub Releases

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Verify tag matches package.json version
if: startsWith(github.ref, 'refs/tags/')
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
tar czf mintlayer-gui.tar.gz mintlayer-gui/

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: mintlayer-gui
path: mintlayer-gui.tar.gz
Expand All @@ -128,7 +128,7 @@ jobs:
url: ${{ steps.deploy.outputs.page_url }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Prepare Pages content
run: |
Expand Down