Commit d4abbff 1 parent ad9774b commit d4abbff Copy full SHA for d4abbff
File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 22
22
23
23
- name : Configure git to use the token
24
24
run : |
25
- git remote set-url origin https://x-access-token: ${{ steps.generate-github-token.outputs.token }}@github.com/${{ github.repository }}.git
25
+ git remote set-url origin https://${{ steps.generate-github-token.outputs.token }}@github.com/${{ github.repository }}.git
26
26
27
27
- name : Bump version in plugin.yaml
28
28
run : |
33
33
git add plugin.yaml
34
34
git commit -m "Bump version to $VERSION"
35
35
git tag -d $VERSION
36
+ git push --delete origin $VERSION
36
37
git tag $VERSION
37
- git push origin HEAD:main
38
+ git push origin HEAD:main --tags
38
39
env :
39
40
GH_TOKEN : ' ${{ steps.generate-github-token.outputs.token }}'
40
41
57
58
GH_TOKEN : ' ${{ steps.generate-github-token.outputs.token }}'
58
59
59
60
- name : Push Docker image
60
- run : docker push ghcr.io/${{ github.repository }}/yamldifftool:${{ github.ref }}
61
+ run : docker push ghcr.io/${{ github.repository }}/yamldifftool:${{ github.ref }}
You can’t perform that action at this time.
0 commit comments