Skip to content
This repository has been archived by the owner on Jul 28, 2023. It is now read-only.

Commit

Permalink
Merge branch 'master' into release-v0.5
Browse files Browse the repository at this point in the history
* master:
  CI: fix release branch name pattern with wildcard (#193)
  CI: fix crate name passed to tag-crate-version (#187)
  • Loading branch information
boozook committed Apr 4, 2022
2 parents 554063e + ca7fdd5 commit a46f4a7
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/tag-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
push:
branches:
- master
- release-v?[0-9]+.[0-9]+.*
- release-v?[0-9]+.[0-9]+**

jobs:
push-tag:
Expand All @@ -13,13 +13,21 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
profile: minimal
override: true

- id: new_tag
name: try create tag
name: Try create tag
uses: pontem-network/tag-crate-version@main
with:
crate: pontem
crate: pontem-node
version-to-tag: "v$1"
token: ${{ secrets.GITHUB_TOKEN }}
pwd: ${{github.workspace}}

outputs:
crate: ${{ steps.new_tag.outputs.crate }}
Expand Down

0 comments on commit a46f4a7

Please sign in to comment.