Skip to content

Commit ff85065

Browse files
authored
Remove debug logging and permission changes (#2029)
Signed-off-by: Rafał Kuć <[email protected]>
1 parent c457706 commit ff85065

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Initialize Attestation
4444
if: ${{ github.event_name != 'pull_request' }}
4545
run: |
46-
chainloop attestation init --workflow $CHAINLOOP_WORKFLOW_NAME --project $CHAINLOOP_PROJECT --debug
46+
chainloop attestation init --workflow $CHAINLOOP_WORKFLOW_NAME --project $CHAINLOOP_PROJECT
4747
4848
- name: Set up Go
4949
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0

.github/workflows/github_release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Initialize Attestation
3939
run: |
4040
tag=$(echo -n ${{inputs.tag}} | cut -d / -f3)
41-
chainloop attestation init --workflow ${CHAINLOOP_WORKFLOW_NAME} --project ${CHAINLOOP_PROJECT} --version "$tag" --debug
41+
chainloop attestation init --workflow ${CHAINLOOP_WORKFLOW_NAME} --project ${CHAINLOOP_PROJECT} --version "$tag"
4242
4343
- name: Attest all assets
4444
run: |

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Initialize Attestation
3131
id: init_attestation
3232
run: |
33-
attestation_id=$(chainloop attestation init --workflow ${CHAINLOOP_WORKFLOW_NAME} --project ${CHAINLOOP_PROJECT_NAME} --debug --release --remote-state -o json | jq -r .attestationID)
33+
attestation_id=$(chainloop attestation init --workflow ${CHAINLOOP_WORKFLOW_NAME} --project ${CHAINLOOP_PROJECT_NAME} --release --remote-state -o json | jq -r .attestationID)
3434
echo "attestation_id=$attestation_id" >> $GITHUB_OUTPUT
3535
env:
3636
CHAINLOOP_TOKEN: ${{ secrets.CHAINLOOP_TOKEN }}

0 commit comments

Comments
 (0)