Skip to content

Commit 8057df2

Browse files
committed
(d) modify release workflows for testing
1 parent 6a4f78f commit 8057df2

File tree

2 files changed

+40
-39
lines changed

2 files changed

+40
-39
lines changed

.github/workflows/publish-go-nightly-task.yml

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ jobs:
171171
bundle_id = "cc.arduino.${{ env.PROJECT_NAME }}"
172172
173173
sign {
174-
application_identity = "Developer ID Application: ARDUINO SA (7KT7ZWMCJT)"
174+
application_identity = "Developer ID Application: Per Tillisch (9M5NQMNWBJ)"
175175
}
176176
177177
# Ask Gon for zip output to force notarization process to take place.
@@ -241,18 +241,18 @@ jobs:
241241
TAG="nightly-$(date -u +"%Y%m%d")"
242242
sha256sum ${{ env.PROJECT_NAME }}_${TAG}* >${TAG}-checksums.txt
243243
244-
- name: configure aws credentials
245-
uses: aws-actions/configure-aws-credentials@v5
246-
with:
247-
role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }}
248-
role-session-name: "github_${{ env.PROJECT_NAME }}"
249-
aws-region: ${{ env.AWS_REGION }}
250-
251-
- name: Upload release files on Arduino downloads servers
252-
run: |
253-
aws s3 sync \
254-
${{ env.DIST_DIR }} \
255-
s3://${{ secrets.DOWNLOADS_BUCKET }}${{ env.AWS_PLUGIN_TARGET }}nightly
244+
# - name: configure aws credentials
245+
# uses: aws-actions/configure-aws-credentials@v5
246+
# with:
247+
# role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }}
248+
# role-session-name: "github_${{ env.PROJECT_NAME }}"
249+
# aws-region: ${{ env.AWS_REGION }}
250+
#
251+
# - name: Upload release files on Arduino downloads servers
252+
# run: |
253+
# aws s3 sync \
254+
# ${{ env.DIST_DIR }} \
255+
# s3://${{ secrets.DOWNLOADS_BUCKET }}${{ env.AWS_PLUGIN_TARGET }}nightly
256256

257257
report:
258258
runs-on: ubuntu-latest
@@ -261,15 +261,16 @@ jobs:
261261
permissions: {}
262262

263263
steps:
264-
- name: Report failure
265-
uses: masci/datadog@v1
266-
with:
267-
api-key: ${{ secrets.DD_API_KEY }}
268-
events: |
269-
- title: "${{ env.PROJECT_NAME }} nightly build failed"
270-
text: "Nightly build workflow has failed"
271-
alert_type: "error"
272-
host: ${{ github.repository }}
273-
tags:
274-
- "project:${{ env.PROJECT_NAME }}"
275-
- "workflow:${{ github.workflow }}"
264+
- run: ""
265+
# - name: Report failure
266+
# uses: masci/datadog@v1
267+
# with:
268+
# api-key: ${{ secrets.DD_API_KEY }}
269+
# events: |
270+
# - title: "${{ env.PROJECT_NAME }} nightly build failed"
271+
# text: "Nightly build workflow has failed"
272+
# alert_type: "error"
273+
# host: ${{ github.repository }}
274+
# tags:
275+
# - "project:${{ env.PROJECT_NAME }}"
276+
# - "workflow:${{ github.workflow }}"

.github/workflows/release-go-task.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ jobs:
170170
bundle_id = "cc.arduino.${{ env.PROJECT_NAME }}"
171171
172172
sign {
173-
application_identity = "Developer ID Application: ARDUINO SA (7KT7ZWMCJT)"
173+
application_identity = "Developer ID Application: Per Tillisch (9M5NQMNWBJ)"
174174
}
175175
176176
# Ask Gon for zip output to force notarization process to take place.
@@ -273,16 +273,16 @@ jobs:
273273
# NOTE: "Artifact is a directory" warnings are expected and don't indicate a problem
274274
# (all the files we need are in the DIST_DIR root)
275275
artifacts: ${{ env.DIST_DIR }}/*
276-
277-
- name: configure aws credentials
278-
uses: aws-actions/configure-aws-credentials@v5
279-
with:
280-
role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }}
281-
role-session-name: "github_${{ env.PROJECT_NAME }}"
282-
aws-region: ${{ env.AWS_REGION }}
283-
284-
- name: Upload release files on Arduino downloads servers
285-
run: |
286-
aws s3 sync \
287-
${{ env.DIST_DIR }} \
288-
s3://${{ secrets.DOWNLOADS_BUCKET }}${{ env.AWS_PLUGIN_TARGET }}
276+
#
277+
# - name: configure aws credentials
278+
# uses: aws-actions/configure-aws-credentials@v5
279+
# with:
280+
# role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }}
281+
# role-session-name: "github_${{ env.PROJECT_NAME }}"
282+
# aws-region: ${{ env.AWS_REGION }}
283+
#
284+
# - name: Upload release files on Arduino downloads servers
285+
# run: |
286+
# aws s3 sync \
287+
# ${{ env.DIST_DIR }} \
288+
# s3://${{ secrets.DOWNLOADS_BUCKET }}${{ env.AWS_PLUGIN_TARGET }}

0 commit comments

Comments
 (0)