File tree Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : ' test papertrail on tag create workflow - will be reverted'
2
+
3
+ on :
4
+ workflow_dispatch :
5
+
6
+
7
+ jobs :
8
+
9
+ create-tag :
10
+ runs-on : ubuntu-latest
11
+ permissions :
12
+ contents : write
13
+ steps :
14
+ - name : Checkout
15
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
16
+ with :
17
+ ref : ' test-submitter'
18
+ - name : Get the latest commit SHA
19
+ id : get-sha
20
+ run : echo "sha=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT"
21
+ - name : Create test tag
22
+ uses : rickstaa/action-create-tag@a1c7777fcb2fee4f19b0f283ba888afa11678b72
23
+ with :
24
+ tag : ' test-v1.37.0'
25
+ commit_sha : ${{ steps.get-sha.outputs.sha }}
26
+ gpg_private_key : ${{ secrets.GPG_PRIVATE_KEY }}
27
+ gpg_passphrase : ${{ secrets.PASSPHRASE }}
28
+
Original file line number Diff line number Diff line change @@ -121,8 +121,9 @@ functions:
121
121
params :
122
122
key_id : ${papertrail_key_id}
123
123
secret_key : ${papertrail_secret_key}
124
- product : " terraform-provider-mongodbatlas"
124
+ product : " tmp2- terraform-provider-mongodbatlas"
125
125
version : ${release_version}
126
+ submitter : " svc-apix-Bot"
126
127
filenames :
127
128
- " src/github.com/mongodb/terraform-provider-mongodbatlas/release_artifacts/*.zip"
128
129
You can’t perform that action at this time.
0 commit comments