Skip to content

Commit

Permalink
Merge pull request #389 from UffizziCloud/feature/388_fix_artifacts_u…
Browse files Browse the repository at this point in the history
…pload

[388] updated upload artifacts workflow version
  • Loading branch information
moklidia authored Dec 18, 2023
2 parents 2ec1021 + e9e203d commit 6368812
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/make-binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ jobs:
chmod +x ./rubyc
./rubyc --openssl-dir=/etc/ssl ./uffizzi --output=${{ inputs.darwin-bin-path }}
- name: Upload Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: matrix.os == 'ubuntu-20.04'
with:
name: ${{ inputs.linux-bin-path }}
path: ${{ inputs.linux-bin-path }}
- name: Upload Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: matrix.os == 'macos-12'
with:
name: ${{ inputs.darwin-bin-path }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@ jobs:
- make-binary
steps:
- name: Download Linux Bin
uses: actions/download-artifact@master
uses: actions/download-artifact@v3
with:
name: ${{ env.LINUX_BIN_PATH }}
- name: Download Macos Bin
uses: actions/download-artifact@master
uses: actions/download-artifact@v3
with:
name: ${{ env.DARWIN_BIN_PATH }}
- name: Generate release notes
Expand Down

0 comments on commit 6368812

Please sign in to comment.