Skip to content

Commit

Permalink
use correct action for artifact upload
Browse files Browse the repository at this point in the history
  • Loading branch information
hallipr committed May 1, 2024
1 parent 0de79e8 commit 7a8422f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ jobs:
shell: bash
run: npm exec --no @neutralinojs/neu -- build --release
- name: upload artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-artifact@v1
with:
name: linux
path: ./dist
build-windows:
runs-on: windows-latest
Expand All @@ -44,8 +45,9 @@ jobs:
shell: pwsh
run: npm exec --no @neutralinojs/neu -- build --release
- name: upload artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-artifact@v1
with:
name: windows
path: ./dist
deploy-web:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 7a8422f

Please sign in to comment.