We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 658b508 + 6750b25 commit d2efe0eCopy full SHA for d2efe0e
.github/workflows/build-latest.yml
@@ -2,9 +2,6 @@
2
3
on: # yamllint disable-line rule:truthy
4
workflow_dispatch:
5
- push:
6
- branches:
7
- - master
8
pull_request:
9
branches:
10
- master
.github/workflows/build-release.yml
@@ -25,7 +25,9 @@ jobs:
25
- name: ⚙️ Get version for image tag
26
id: version
27
run: |
28
- echo "version=${{ github.ref_name#v }}" >> $GITHUB_OUTPUT
+ version=${{ github.ref_name }}
29
+ version=${version#v}
30
+ echo "version=$version" >> $GITHUB_OUTPUT
31
32
build:
33
needs: prepare
0 commit comments