We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22809fa commit 3527dddCopy full SHA for 3527ddd
.github/workflows/tag-dist.yaml
@@ -6,7 +6,7 @@ on:
6
- main
7
- "release/*"
8
tags:
9
- - "v*"
+ - "v*"
10
workflow_dispatch:
11
12
concurrency:
@@ -39,6 +39,7 @@ jobs:
39
git clone "$SOURCE" publish
40
cd publish
41
git fetch --tags
42
+ git fetch origin ${{ github.ref_name }}:${{ github.ref_name }}
43
git checkout publish/${{ github.ref_name }} 2>/dev/null || git checkout -b publish/${{ github.ref_name }}
44
git merge ${{ github.ref_name }} -X theirs
45
- name: Copy dist folder
0 commit comments