Debug
This commit is contained in:
parent
87e3630693
commit
0b9c5d2ead
9
.github/workflows/tag.yml
vendored
9
.github/workflows/tag.yml
vendored
|
@ -8,8 +8,15 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Determine version
|
||||
id: determine-version
|
||||
run: cat Cargo.toml | grep version | head -1 | sed 's/version = //' | sed 's/"//g'
|
||||
|
||||
- name: Get previous output
|
||||
run: echo "${{ steps.determine-version.outputs }}"
|
||||
|
||||
- uses: Klemensas/action-autotag@stable
|
||||
with:
|
||||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
||||
version: "$(cat Cargo.toml | grep version | head -1 | sed 's/version = //' | sed 's/\"//g')"
|
||||
version: "${{ steps.determine-version.outputs.result }}"
|
||||
tag_prefix: "v"
|
Loading…
Reference in New Issue
Block a user