Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
akiyosi committed Feb 2, 2025
1 parent b33aa34 commit 6f591af
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
tar -jcvf goneovim-linux.tar.bz2 goneovim-linux
- name: Upload for linux
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: goneovim-linux
path: ${{ github.workspace }}/src/github.com/${{ github.repository }}/cmd/goneovim/deploy/goneovim-linux.tar.bz2
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
tar -jcvf goneovim-macos-x86_64.tar.bz2 goneovim-macos-x86_64
- name: Upload for macos
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: goneovim-macos-x86_64
path: ${{ github.workspace }}/src/github.com/${{ github.repository }}/cmd/goneovim/deploy/goneovim-macos-x86_64.tar.bz2
Expand Down Expand Up @@ -307,7 +307,7 @@ jobs:
tar -jcvf goneovim-macos-arm64.tar.bz2 goneovim-macos-arm64
- name: Upload for macos m1
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: goneovim-macos-arm64
path: ${{ github.workspace }}/src/github.com/${{ github.repository }}/cmd/goneovim/deploy/goneovim-macos-arm64.tar.bz2
Expand Down Expand Up @@ -511,7 +511,7 @@ jobs:
zip -r goneovim-windows.zip goneovim-windows
- name: Upload for windows
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: goneovim-windows
path: C:/${{ github.repository }}/cmd/goneovim/deploy/goneovim-windows.zip
Expand Down Expand Up @@ -547,7 +547,7 @@ jobs:
# steps:

# - name: Install Qt
# uses: jurplel/install-qt-action@v3
# uses: jurplel/install-qt-action@v4
# with:
# version: ${{ matrix.qtversion }}
# host: windows
Expand Down Expand Up @@ -756,7 +756,7 @@ jobs:
# runs-on: macos-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v3
# uses: actions/checkout@v4
# with:
# fetch-depth: 0
#
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ jobs:
tar -jcvf "$ARCHIVE_NAME".tar.bz2 "$ARCHIVE_NAME"
- name: Upload for linux
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: goneovim-linux
path: ${{ github.workspace }}/src/github.com/${{ github.repository }}/cmd/goneovim/deploy/${{ env.ARCHIVE_NAME }}.tar.bz2
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
tar -jcvf "$ARCHIVE_NAME".tar.bz2 "$ARCHIVE_NAME"
- name: Upload for macos
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: goneovim-macos-x86_64
path: ${{ github.workspace }}/src/github.com/${{ github.repository }}/cmd/goneovim/deploy/${{ env.ARCHIVE_NAME }}.tar.bz2
Expand Down Expand Up @@ -309,7 +309,7 @@ jobs:
tar -jcvf "$ARCHIVE_NAME".tar.bz2 "$ARCHIVE_NAME"
- name: Upload for macos
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: goneovim-macos-arm64
path: ${{ github.workspace }}/src/github.com/${{ github.repository }}/cmd/goneovim/deploy/${{ env.ARCHIVE_NAME }}.tar.bz2
Expand Down Expand Up @@ -430,7 +430,7 @@ jobs:
zip -r ${{ env.ARCHIVE_NAME }}.zip ${{ env.ARCHIVE_NAME }}
- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: goneovim-windows
path: C:/${{ github.repository }}/cmd/goneovim/deploy/${{ env.ARCHIVE_NAME }}.zip
Expand All @@ -445,7 +445,7 @@ jobs:
# runs-on: ${{ matrix.platform }}
# steps:
# - name: Checkout code
# uses: actions/checkout@v3
# uses: actions/checkout@v4
# with:
# fetch-depth: 0
#
Expand Down

0 comments on commit 6f591af

Please sign in to comment.