Skip to content

Commit

Permalink
CI: Fixing artifacts publication
Browse files Browse the repository at this point in the history
  • Loading branch information
AltGr committed Dec 5, 2023
1 parent e56d654 commit 38f746e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ jobs:
destination: ./_site
# Not the default gh download-artifact action, which doesn't work
# between workflows
- name: Get previous artifact learn-ocaml-www.zip
- name: Get previous artifact learn-ocaml-www
uses: dawidd6/action-download-artifact@v2
with:
workflow: ${{ github.event.workflow_run.workflow_id }}
name: learn-ocaml-www.zip
name: learn-ocaml-www
path: artifacts/
- name: Get previous artifact learn-ocaml-linux-x86_64
uses: dawidd6/action-download-artifact@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/static-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
'${{ matrix.arch_dir }}'
docker rm "$container"
- name: 'Upload ${{ matrix.arch_dir }}'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.arch_dir }}
path: ${{ matrix.arch_dir }}/*
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
mkdir -p ${{ matrix.artifact }}
cp learn-ocaml learn-ocaml-server learn-ocaml-client ${{ matrix.artifact }}
- name: Upload static binaries
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.artifact }}
path: ${{ matrix.artifact }}/*
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
mkdir -p ${{ matrix.artifact }}
cp _build/install/default/bin/learn-ocaml{,-server,-client} ${{ matrix.artifact }}
- name: Upload static binaries
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.artifact }}
path: ${{ matrix.artifact }}/*

0 comments on commit 38f746e

Please sign in to comment.