diff --git a/.github/workflows/release-lin.yml b/.github/workflows/release-lin.yml index fdf2a6a..1689bb5 100644 --- a/.github/workflows/release-lin.yml +++ b/.github/workflows/release-lin.yml @@ -14,6 +14,7 @@ jobs: include: - target: x86_64-unknown-linux-musl archive: tar.gz + package: modda-cli steps: - uses: actions/checkout@master - name: Compile and release @@ -22,6 +23,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: RUSTTARGET: ${{ matrix.target }} + SRC_DIR: ${{ matrix.package }} TOOLCHAIN_VERSION: stable ARCHIVE_TYPES: ${{ matrix.archive }} EXTRA_FILES: "README.md LICENSE" diff --git a/.github/workflows/release-mac.yml b/.github/workflows/release-mac.yml index 27eb184..e7288eb 100644 --- a/.github/workflows/release-mac.yml +++ b/.github/workflows/release-mac.yml @@ -14,6 +14,7 @@ jobs: include: - target: x86_64-apple-darwin archive: zip + package: modda-cli steps: - uses: actions/checkout@master - name: Compile and release @@ -22,6 +23,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: RUSTTARGET: ${{ matrix.target }} + SRC_DIR: ${{ matrix.package }} TOOLCHAIN_VERSION: stable ARCHIVE_TYPES: ${{ matrix.archive }} EXTRA_FILES: "README.md LICENSE" diff --git a/.github/workflows/release-win.yml b/.github/workflows/release-win.yml index e7f0f3f..6124107 100644 --- a/.github/workflows/release-win.yml +++ b/.github/workflows/release-win.yml @@ -14,6 +14,7 @@ jobs: include: - target: x86_64-pc-windows-gnu archive: zip + package: modda-cli steps: - uses: actions/checkout@master - name: Compile and release @@ -22,6 +23,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: RUSTTARGET: ${{ matrix.target }} + SRC_DIR: ${{ matrix.package }} TOOLCHAIN_VERSION: stable ARCHIVE_TYPES: ${{ matrix.archive }} EXTRA_FILES: "README.md LICENSE"