Skip to content

Commit

Permalink
Revert actions/upload-artifact and actions/download-artifact bumps to…
Browse files Browse the repository at this point in the history
… v4 (#913)

* Revert "chore(deps): bump actions/download-artifact from 3 to 4"

This reverts commit ef9794e.

* Revert "chore(deps): bump actions/upload-artifact from 3 to 4"

This reverts commit 9a26719.
  • Loading branch information
czeslavo committed Dec 20, 2023
1 parent 0e167c0 commit 42eebf1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: build for ${{ matrix.os }} ${{ matrix.arch }}
run: make build GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }}
- name: upload ${{ matrix.os }} ${{ matrix.arch }} artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: bin
path: build/ktf.${{ matrix.os }}.${{ matrix.arch }}
Expand All @@ -59,7 +59,7 @@ jobs:
run: sha256sum ktf.${{ matrix.os }}.${{ matrix.arch }} >> CHECKSUMS.${{ matrix.os }}.${{ matrix.arch }}
working-directory: ./build/
- name: upload checksum for ${{ matrix.os }} ${{ matrix.arch }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: CHECKSUMS
path: build/CHECKSUMS.${{ matrix.os }}.${{ matrix.arch }}
Expand All @@ -80,15 +80,15 @@ jobs:
# --------------------------------------------------------------------------

- name: download checksums artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: CHECKSUMS

- name: concatenate all checksums
run: cat CHECKSUMS.* > CHECKSUMS

- name: download binary artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: bin

Expand Down

0 comments on commit 42eebf1

Please sign in to comment.