Skip to content

Commit

Permalink
Merge pull request #25 from boozook/ci-fix-release
Browse files Browse the repository at this point in the history
CI: fix artefacts naming (missed quote)
  • Loading branch information
rtsuk authored Apr 23, 2022
2 parents 6ac4323 + f0a032e commit c1eaadb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,5 +138,5 @@ jobs:
with:
upload_url: ${{ needs.release.outputs.upload_url }}
asset_path: "target/release/crank${{ matrix.os.name == 'windows' && '.exe' || '' }}"
asset_name: crank-${{ matrix.os.name }}-${{ steps.build-info.outputs.arch }}${{ matrix.os.name == 'windows' && '.exe' || '' }}"
asset_name: "crank-${{ matrix.os.name }}-${{ steps.build-info.outputs.arch }}${{ matrix.os.name == 'windows' && '.exe' || '' }}"
asset_content_type: application/octet-stream
6 changes: 3 additions & 3 deletions .github/workflows/tagger.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This workflow checking and comparing crate version by cargo-metadata with latest tag by git,
# then trying to push new tag, the trigger release workflow.
name: Tag Version
name: Tagger
on:
push:
branches:
Expand All @@ -10,7 +10,7 @@ on:

jobs:
push-tag:
name: Tag crate version
name: tag crate version
runs-on: ubuntu-latest
steps:
- name: checkout
Expand All @@ -25,7 +25,7 @@ jobs:

- id: new_tag
name: try create tag
uses: pontem-network/[email protected].0
uses: pontem-network/[email protected].1
with:
# crate: crank # optional, auto-determable
version-to-tag: "$1"
Expand Down

0 comments on commit c1eaadb

Please sign in to comment.