Skip to content

Commit

Permalink
chore: upgrade action upload artifact (#332)
Browse files Browse the repository at this point in the history
  • Loading branch information
airslice authored Sep 18, 2024
1 parent 6627845 commit 7a05913
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-geo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Save docker image
run: docker save ${{ env.IMAGE_NAME }} | gzip > plateauview-geo.tar.gz
- name: Save image to artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: plateauview-geo
path: plateauview-geo.tar.gz
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
check_artifacts: true
search_artifacts: true
- name: Download extension artifact from the previous job
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
if: ${{ inputs.local == 'true' }}
with:
name: extension
Expand All @@ -49,7 +49,7 @@ jobs:
- name: Save docker image
run: docker save ${{ env.IMAGE_NAME }} | gzip > plateauview-api.tar.gz
- name: Save imaged to artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: plateauview-api
path: plateauview-api.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-worker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Save docker image
run: docker save ${{ env.IMAGE_NAME }} | gzip > plateauview-api-worker.tar.gz
- name: Save image to artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: plateauview-api-worker
path: plateauview-api-worker.tar.gz
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
strip: true
working-directory: tools/plateau-view-tool
- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.platform.name }}
path: tools/plateau-view-tool/target/${{ matrix.platform.target }}/release/${{ matrix.platform.bin }}
Expand All @@ -73,7 +73,7 @@ jobs:
git config --global user.name "${{ github.actor }}"
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
path: tools-artifacts
- name: Pack tools
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-cms-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
rm reearth-cms-web.tar.gz
tar -zcvf reearth-cms-web.tar.gz reearth-cms-web
- name: Save as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: reearth-cms-web
path: reearth-cms-web.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-reearth-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
rm reearth-web.tar.gz
tar -zcvf reearth-web.tar.gz reearth-web
- name: Save as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: reearth-web
path: reearth-web.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-reearth-visualizer-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
rm reearth-web.tar.gz
tar -zcvf reearth-visualizer-web.tar.gz reearth-web
- name: Save as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: reearth-visualizer-web
path: reearth-visualizer-web.tar.gz
Expand Down

0 comments on commit 7a05913

Please sign in to comment.