We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddacefa commit e7f2956Copy full SHA for e7f2956
.github/workflows/server_release.yml
@@ -45,6 +45,13 @@ jobs:
45
46
- name: Checkout
47
uses: actions/checkout@v4
48
+
49
+ - name: Extract version
50
+ id: version
51
+ run: |
52
+ VERSION=${GITHUB_REF_NAME#server/}
53
+ echo "VERSION=$VERSION" >> $GITHUB_ENV
54
+ echo "version=$VERSION" >> $GITHUB_OUTPUT
55
56
- name: Inject cache docker image
57
working-directory: refact-server
@@ -76,7 +83,7 @@ jobs:
76
83
push: true
77
84
context: refact-server
78
85
tags: |
79
- smallcloud/refact_self_hosting:${{github.ref_name}}
86
+ smallcloud/refact_self_hosting:${{ env.VERSION }}
80
87
smallcloud/refact_self_hosting:latest
81
88
platforms: |
82
89
linux/amd64
0 commit comments