We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ba7516 commit f9bcf5dCopy full SHA for f9bcf5d
1 file changed
.github/workflows/build-prod-image.yml
@@ -14,11 +14,17 @@ jobs:
14
uses: actions/checkout@v3
15
with:
16
fetch-depth: 0 # Needed to fetch all tags
17
+ token: ${{ secrets.GITHUB_TOKEN }}
18
+
19
+ - name: Set up Git
20
+ run: |
21
+ git config --global user.email "github-actions[bot]@users.noreply.github.com"
22
+ git config --global user.name "github-actions[bot]"
23
24
- name: Update latest tag on Github
25
run: |
26
git tag -f latest
- git push origin latest
27
+ git push origin latest -f
28
29
- name: Set up Docker Buildx
30
uses: docker/setup-buildx-action@v2
0 commit comments