mirror of
https://github.com/fluencelabs/marine.git
synced 2025-03-15 14:00:50 +00:00
Fix typo
This commit is contained in:
parent
9ea27fd9cb
commit
8c84b8e039
34
.github/workflows/publish_release.yml
vendored
34
.github/workflows/publish_release.yml
vendored
@ -66,7 +66,7 @@ jobs:
|
|||||||
# For all crates in the workspace accumulate its max_version
|
# For all crates in the workspace accumulate its max_version
|
||||||
for CRATE_NAME in $(cargo ws list)
|
for CRATE_NAME in $(cargo ws list)
|
||||||
do
|
do
|
||||||
CRATE_VERSION="$((cargo show --json "$PKG_NAME" | jq -r .crate.max_version) 2>/dev/null || true)"
|
CRATE_VERSION="$((cargo show --json "$CRATE_NAME" | jq -r .crate.max_version) 2>/dev/null || true)"
|
||||||
ALL_CRATES_VERSIONS+=($CRATE_VERSION)
|
ALL_CRATES_VERSIONS+=($CRATE_VERSION)
|
||||||
done
|
done
|
||||||
# Take the highest version of all
|
# Take the highest version of all
|
||||||
@ -83,20 +83,20 @@ jobs:
|
|||||||
- name: Login to crates.io
|
- name: Login to crates.io
|
||||||
run: cargo login ${{ secrets.CRATES_IO_TOKEN }}
|
run: cargo login ${{ secrets.CRATES_IO_TOKEN }}
|
||||||
|
|
||||||
# # Set the same version to all crates in the workspace and publish
|
# Set the same version to all crates in the workspace and publish
|
||||||
# - name: Publish to crates.io
|
- name: Publish to crates.io
|
||||||
# run: cargo ws publish --no-git-commit --allow-dirty --yes custom "${{ env.FINAL_VERSION }}"
|
run: cargo ws publish --no-git-commit --allow-dirty --yes custom "${{ env.FINAL_VERSION }}"
|
||||||
|
|
||||||
# ### Create a pre-release
|
### Create a pre-release
|
||||||
# - name: Create Release
|
- name: Create Release
|
||||||
# id: create_release
|
id: create_release
|
||||||
# uses: actions/create-release@v1
|
uses: actions/create-release@v1
|
||||||
# env:
|
env:
|
||||||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
# with:
|
with:
|
||||||
# tag_name: ${{ env.FINAL_VERSION }}
|
tag_name: ${{ env.FINAL_VERSION }}
|
||||||
# release_name: Fluence Compute Engine ${{ env.FINAL_VERSION }}
|
release_name: Fluence Compute Engine ${{ env.FINAL_VERSION }}
|
||||||
# body: |
|
body: |
|
||||||
# - [${{ env.FINAL_VERSION }} @ crates.io](https://crates.io/crates/${{ env.PKG_NAME }}/${{ env.FINAL_VERSION }})
|
- [${{ env.FINAL_VERSION }} @ crates.io](https://crates.io/crates/${{ env.PKG_NAME }}/${{ env.FINAL_VERSION }})
|
||||||
# draft: false
|
draft: false
|
||||||
# prerelease: true
|
prerelease: true
|
Loading…
x
Reference in New Issue
Block a user