Skip to content

Commit

Permalink
update artifact actions
Browse files Browse the repository at this point in the history
  • Loading branch information
zekroTJA committed Oct 1, 2024
1 parent 227df96 commit 27a29f6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/artifacts-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
working-directory: ./web
run: yarn run build --base=/
- name: Upload Artifcats
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: frontend
path: web/dist/web
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
FNAME: ./bin/shinpuru-${{ matrix.goos }}-${{ matrix.goarch }}
run: mv ${{ env.FNAME }} ${{ env.FNAME }}.exe
- name: Upload Artifcats
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: shinpuru-${{ matrix.goos }}-${{ matrix.goarch }}
path: bin/
6 changes: 3 additions & 3 deletions .github/workflows/releases-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
working-directory: ./web
run: yarn run build --base=/
- name: Upload Artifcats
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: frontend
path: web/dist/web
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
FNAME: ./bin/shinpuru-${{ matrix.goos }}-${{ matrix.goarch }}
run: mv ${{ env.FNAME }} ${{ env.FNAME }}.exe
- name: Upload Artifcats
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: backend
path: bin/
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
FNAME: ./bin/setup-${{ matrix.goos }}-${{ matrix.goarch }}
run: mv ${{ env.FNAME }} ${{ env.FNAME }}.exe
- name: Upload Artifcats
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: setup
path: bin/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/setup-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
FNAME: ./bin/setup-${{ matrix.goos }}-${{ matrix.goarch }}
run: mv ${{ env.FNAME }} ${{ env.FNAME }}.exe
- name: Upload Artifcats
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: setup
path: bin/

0 comments on commit 27a29f6

Please sign in to comment.