We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87d144c commit 0c1b488Copy full SHA for 0c1b488
.github/workflows/publish.yml
@@ -7,9 +7,11 @@ jobs:
7
steps:
8
- name: Extract tag/branch variables
9
shell: bash
10
- run: >
+ run: |
11
echo "tag=$(echo ${GITHUB_REF#refs/tags/}|grep -v '/')" >> $GITHUB_OUTPUT
12
echo "branch=$(echo ${GITHUB_REF#refs/heads/}|grep -v '/')" >> $GITHUB_OUTPUT
13
+ echo "br=$(echo ${GITHUB_REF#refs/heads/}|grep -v '/')"
14
+ echo "ref${GITHUB_REF}" >> $GITHUB_OUTPUT
15
id: extract
16
- name: Write secret keys
17
run: >
0 commit comments