diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 860440908..c164bd9e2 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -200,26 +200,24 @@ jobs: shell: bash run: | PKG_suffix=".tar.gz" ; case ${{ matrix.job.target }} in *-pc-windows-*) PKG_suffix=".zip" ;; esac; - PKG_BASENAME=${{ needs.crate_metadata.outputs.name }}-v${{ needs.crate_metadata.outputs.version }}-${{ matrix.job.target }} + PKG_BASENAME=${{ needs.crate_metadata.outputs.name }}-${{ matrix.job.target }} PKG_NAME=${PKG_BASENAME}${PKG_suffix} echo "PKG_NAME=${PKG_NAME}" >> $GITHUB_OUTPUT PKG_STAGING="${{ env.CICD_INTERMEDIATES_DIR }}/package" - ARCHIVE_DIR="${PKG_STAGING}/${PKG_BASENAME}/" - mkdir -p "${ARCHIVE_DIR}" - # mkdir -p "${ARCHIVE_DIR}/autocomplete" + mkdir -p "${PKG_STAGING}" # Binary - cp "${{ steps.bin.outputs.BIN_PATH }}" "$ARCHIVE_DIR" + cp "${{ steps.bin.outputs.BIN_PATH }}" "$PKG_STAGING" # README, LICENSE and CHANGELOG files - # cp "README.md" "LICENSE-MIT" "LICENSE-APACHE" "CHANGELOG.md" "$ARCHIVE_DIR" + # cp "README.md" "LICENSE-MIT" "LICENSE-APACHE" "CHANGELOG.md" "$PKG_STAGING" # base compressed package pushd "${PKG_STAGING}/" >/dev/null case ${{ matrix.job.target }} in - *-pc-windows-*) 7z -y a "${PKG_NAME}" "${PKG_BASENAME}"/* | tail -2 ;; - *) tar czf "${PKG_NAME}" "${PKG_BASENAME}"/* ;; + *-pc-windows-*) 7z -y a "${PKG_NAME}" ./* | tail -2 ;; + *) tar czf "${PKG_NAME}" ./* ;; esac; popd >/dev/null @@ -239,7 +237,7 @@ jobs: unset IS_RELEASE ; if [[ $GITHUB_REF =~ ^refs/tags/v[0-9].* ]]; then IS_RELEASE='true' ; fi echo "IS_RELEASE=${IS_RELEASE}" >> $GITHUB_OUTPUT - - name: Publish archives and packages + - name: Publish packages uses: softprops/action-gh-release@v1 if: steps.is-release.outputs.IS_RELEASE with: diff --git a/Cargo.lock b/Cargo.lock index 2bd55cd1d..c84730fe7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2531,7 +2531,7 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "pixi" -version = "0.1.0" +version = "0.0.2" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 831625a94..09a622111 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pixi" -version = "0.1.0" +version = "0.0.2" edition = "2021" [features] diff --git a/docs/README.md b/docs/README.md index e00447fa5..faeb81c0f 100644 --- a/docs/README.md +++ b/docs/README.md @@ -43,13 +43,13 @@ with package managers like `cargo` or `yarn` but for any language. * ⚙️ [Examples](../examples) * 📚 [Documentation](./getting_started.md) * 😍 [Contributing](#contributing) - + # Status -This project is currently in _alpha stage_. -There are many features that we want to add. -The file formats are still in flux. -Expect breaking changes while we work towards a v1.0. +This project is currently in _alpha stage_. +There are many features that we want to add. +The file formats are still in flux. +Expect breaking changes while we work towards a v1.0. Some notable features that we have in the pipeline are: diff --git a/pixi.toml b/pixi.toml index 0caaff121..8c8a11c46 100644 --- a/pixi.toml +++ b/pixi.toml @@ -1,6 +1,6 @@ [project] name = "pixi" -version = "0.1.0" +version = "0.0.2" description = "Package manamgent made easy!" authors = ["Wolf Vollprecht ", "Bas Zalmstra ", "Tim de Jager ", "Ruben Arts "] channels = ["conda-forge"]