We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be843bc commit d9facfeCopy full SHA for d9facfe
.github/workflows/release.yml
@@ -3,7 +3,7 @@ name: Release
3
on:
4
push:
5
tags:
6
- - '[0-9]+(\.[0-9]+)*'
+ - '*.*.*'
7
8
jobs:
9
frontend:
@@ -90,17 +90,13 @@ jobs:
90
username: ${{ secrets.DOCKER_USERNAME }}
91
password: ${{ secrets.DOCKER_PASSWORD }}
92
93
- - name: Extract tag name
94
- id: tag
95
- run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
96
-
97
- name: Build and push
98
uses: docker/build-push-action@v5
99
with:
100
context: .
101
push: true
102
tags: |
103
subshellgmbh/o-neko:latest
104
- subshellgmbh/o-neko:${{ steps.tag.outputs.tag }}
+ subshellgmbh/o-neko:${{ github.ref_name }}
105
build-args: |
106
JAR_FILE=${{ steps.find_jar.outputs.jar }}
0 commit comments