We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8c284a commit 22acdbcCopy full SHA for 22acdbc
.github/workflows/release-please.yml
@@ -84,6 +84,15 @@ jobs:
84
# with:
85
# github-token: ${{ secrets.GITHUB_TOKEN }}
86
87
+ - name: push stamped release
88
+ if: ${{ steps.release.outputs.release_created }}
89
+ run: |
90
+ git config user.name github-actions[bot]
91
+ git config user.email 4104672+github-actions[bot]@users.noreply.github.com
92
+ git remote add gh-token "https://${{ secrets.GITHUB_TOKEN}}@github.com/${{ github.repository }}.git"
93
+ git commit -a -m 'chore: stamp files for release'
94
+ git push origin
95
+
96
- name: Publish
97
if: ${{ steps.release.outputs.release_created }}
98
env:
.github/workflows/test-pr.yml
@@ -6,6 +6,8 @@ env:
6
on:
7
pull_request:
8
push:
9
+ tags-ignore:
10
+ - '**'
11
12
jobs:
13
build:
0 commit comments