We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 091d2d0 commit 119a5e9Copy full SHA for 119a5e9
.github/workflows/build-push.yaml
@@ -41,7 +41,7 @@ jobs:
41
42
- name: Set short sha
43
id: vars
44
- run: echo "::set-output name=sha_short::${GITHUB_SHA::7}"
+ run: echo "sha_short=${GITHUB_SHA::7}" >> $GITHUB_OUTPUT
45
46
- name: Bump version and tag
47
id: tag_version
@@ -54,7 +54,7 @@ jobs:
54
55
- name: For PR build only
56
if: ${{ github.event_name == 'pull_request' }}
57
- uses: docker/build-push-action@v2
+ uses: docker/build-push-action@v6
58
with:
59
context: .
60
push: false
@@ -66,7 +66,7 @@ jobs:
66
67
- name: For merge build and push erundopel
68
if: ${{ github.event_name == 'push' }}
69
70
71
72
push: true
0 commit comments