|
34 | 34 | - 'static/**'
|
35 | 35 | - '*.md'
|
36 | 36 | schedule:
|
37 |
| - - cron: '0 3 * * *' # run every day at 3AM (https://docs.github.com/en/actions/reference/events-that-trigger-workflows#scheduled-events-schedule) |
| 37 | + - cron: "*/5 * * * *" |
38 | 38 | workflow_run:
|
39 | 39 | workflows:
|
40 | 40 | - Push Container Images
|
|
56 | 56 | - config:
|
57 | 57 | # Human identifier for the job.
|
58 | 58 | name: Windows
|
59 |
| - runs-on: [self-hosted, windows-sign-pc] |
| 59 | + runs-on: windows-2019 |
60 | 60 | # The value is a string representing a JSON document.
|
61 | 61 | # Setting this to null causes the job to run directly in the runner machine instead of in a container.
|
62 | 62 | container: |
|
|
79 | 79 | # otherwise paths in the build job will be too long for `light.exe`
|
80 | 80 | # we use the below as a Symbolic link (just changing the wd will break the checkout action)
|
81 | 81 | # this is a work around (see: https://github.com/actions/checkout/issues/197).
|
82 |
| - working-directory: 'C:\a' |
| 82 | + # working-directory: 'C:\a' |
83 | 83 | artifacts:
|
84 | 84 | - path: '*Windows_64bit.exe'
|
85 | 85 | name: Windows_X86-64_interactive_installer
|
@@ -600,15 +600,15 @@ jobs:
|
600 | 600 | path: ${{ env.ARTIFACTS_FOLDER }}
|
601 | 601 | pattern: ${{ env.JOB_TRANSFER_ARTIFACT_PREFIX }}*
|
602 | 602 |
|
603 |
| - - name: Configure AWS Credentials for Nightly [S3] |
604 |
| - uses: aws-actions/configure-aws-credentials@v4 |
605 |
| - with: |
606 |
| - role-to-assume: ${{ secrets.AWS_ROLE_ARN }} |
607 |
| - aws-region: us-east-1 |
608 |
| - |
609 |
| - - name: Publish Nightly [S3] |
610 |
| - run: | |
611 |
| - aws s3 sync ${{ env.ARTIFACTS_FOLDER }} s3://${{ secrets.DOWNLOADS_BUCKET }}/arduino-ide/nightly |
| 603 | +# - name: Configure AWS Credentials for Nightly [S3] |
| 604 | +# uses: aws-actions/configure-aws-credentials@v4 |
| 605 | +# with: |
| 606 | +# role-to-assume: ${{ secrets.AWS_ROLE_ARN }} |
| 607 | +# aws-region: us-east-1 |
| 608 | +# |
| 609 | +# - name: Publish Nightly [S3] |
| 610 | +# run: | |
| 611 | +# aws s3 sync ${{ env.ARTIFACTS_FOLDER }} s3://${{ secrets.DOWNLOADS_BUCKET }}/arduino-ide/nightly |
612 | 612 |
|
613 | 613 | release:
|
614 | 614 | needs:
|
@@ -658,17 +658,18 @@ jobs:
|
658 | 658 | file_glob: true
|
659 | 659 | body: ${{ needs.changelog.outputs.BODY }}
|
660 | 660 |
|
661 |
| - - name: Configure AWS Credentials for Release [S3] |
662 |
| - if: needs.build-type-determination.outputs.publish-to-s3 == 'true' |
663 |
| - uses: aws-actions/configure-aws-credentials@v4 |
664 |
| - with: |
665 |
| - role-to-assume: ${{ secrets.AWS_ROLE_ARN }} |
666 |
| - aws-region: us-east-1 |
| 661 | + # - name: Configure AWS Credentials for Release [S3] |
| 662 | + # if: needs.build-type-determination.outputs.publish-to-s3 == 'true' |
| 663 | + # uses: aws-actions/configure-aws-credentials@v4 |
| 664 | + # with: |
| 665 | + # role-to-assume: ${{ secrets.AWS_ROLE_ARN }} |
| 666 | + # aws-region: us-east-1 |
667 | 667 |
|
668 | 668 | - name: Publish Release [S3]
|
669 | 669 | if: needs.build-type-determination.outputs.publish-to-s3 == 'true'
|
670 | 670 | run: |
|
671 |
| - aws s3 sync ${{ env.ARTIFACTS_FOLDER }} s3://${{ secrets.DOWNLOADS_BUCKET }}/arduino-ide |
| 671 | + # aws s3 sync ${{ env.ARTIFACTS_FOLDER }} s3://${{ secrets.DOWNLOADS_BUCKET }}/arduino-ide |
| 672 | + echo "Hello, world!" |
672 | 673 |
|
673 | 674 | clean:
|
674 | 675 | # This job must run after all jobs that use the transfer artifact.
|
|
0 commit comments