We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e11fa8 commit aca3fd1Copy full SHA for aca3fd1
.github/workflows/release.yml
@@ -51,11 +51,6 @@ jobs:
51
meson setup . _build
52
meson dist -C _build
53
54
- - name: Push updated translations
55
- if: ${{ !fromJSON(github.event.inputs.dryRun) }}
56
- run: |
57
- git push
58
-
59
- name: Extract release information
60
env:
61
releaseVersion: ${{ github.event.inputs.version }}
@@ -97,9 +92,10 @@ jobs:
97
92
git commit --allow-empty -m $releaseVersion
98
93
git tag -a $releaseVersion -m $releaseVersion
99
94
100
- if [ "$DRY_RUN" = "false" ]; then
101
- git push --follow-tags
102
- fi
95
+ - name: Push translations, release commit, and tag
96
+ if: ${{ !fromJSON(github.event.inputs.dryRun) }}
+ run: |
+ git push --atomic --follow-tags
103
104
- name: Create release
105
if: ${{ !fromJSON(github.event.inputs.dryRun) }}
0 commit comments