diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 65107e5..6a87125 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -68,11 +68,13 @@ jobs: echo "cargo dist plan ran successfully" cat dist-manifest.json echo "manifest=$(jq -c "." dist-manifest.json)" >> "$GITHUB_OUTPUT" + - name: "Upload dist-manifest.json" uses: actions/upload-artifact@v3 with: name: artifacts - path: dist-manifest.json + # Added: `dpedal_flash/` as its written to a different path now + path: dpedal_flash/dist-manifest.json # Build and packages all the platform-specific things upload-local-artifacts: @@ -139,9 +141,10 @@ jobs: uses: actions/upload-artifact@v3 with: name: artifacts + # Added: `dpedal_flash/` as its written to a different path now path: | ${{ steps.cargo-dist.outputs.paths }} - ${{ env.BUILD_MANIFEST_NAME }} + dpedal_flash/${{ env.BUILD_MANIFEST_NAME }} should-publish: needs: diff --git a/dpedal_flash/Cargo.lock b/dpedal_flash/Cargo.lock index 5256a9b..b809601 100644 --- a/dpedal_flash/Cargo.lock +++ b/dpedal_flash/Cargo.lock @@ -270,7 +270,7 @@ dependencies = [ [[package]] name = "dpedalflash" -version = "0.1.1" +version = "0.1.2" dependencies = [ "clap", "dfu-libusb", diff --git a/dpedal_flash/Cargo.toml b/dpedal_flash/Cargo.toml index 704ac4e..f4b6ad7 100644 --- a/dpedal_flash/Cargo.toml +++ b/dpedal_flash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dpedalflash" -version = "0.1.1" +version = "0.1.2" edition = "2021" repository = "https://github.com/rukai/DPedal"