Skip to content

Commit

Permalink
Fix path.
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeMathWalker committed Jan 12, 2024
1 parent de28e93 commit 1724f4f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
runs-on: ${{ matrix.runner }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BUILD_MANIFEST_NAME: libs/target/distrib/${{ join(matrix.targets, '-') }}-dist-manifest.json
BUILD_MANIFEST_NAME: target/distrib/${{ join(matrix.targets, '-') }}-dist-manifest.json
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -145,8 +145,8 @@ jobs:
with:
name: artifacts
path: |
${{ steps.cargo-dist.outputs.paths }}
${{ env.BUILD_MANIFEST_NAME }}
libs/${{ steps.cargo-dist.outputs.paths }}
libs/${{ env.BUILD_MANIFEST_NAME }}
# Build and package all the platform-agnostic(ish) things
build-global-artifacts:
Expand All @@ -156,7 +156,7 @@ jobs:
runs-on: "ubuntu-20.04"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BUILD_MANIFEST_NAME: libs/target/distrib/dist-manifest.json
BUILD_MANIFEST_NAME: target/distrib/dist-manifest.json
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -186,8 +186,8 @@ jobs:
with:
name: artifacts
path: |
${{ steps.cargo-dist.outputs.paths }}
${{ env.BUILD_MANIFEST_NAME }}
libs/${{ steps.cargo-dist.outputs.paths }}
libs/${{ env.BUILD_MANIFEST_NAME }}
# Determines if we should publish/announce
host:
needs:
Expand Down

0 comments on commit 1724f4f

Please sign in to comment.