|
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' |
83 | 82 | artifacts:
|
84 | 83 | - path: '*Windows_64bit.exe'
|
85 | 84 | name: Windows_X86-64_interactive_installer
|
@@ -568,6 +567,13 @@ jobs:
|
568 | 567 | name: ${{ env.JOB_TRANSFER_ARTIFACT_PREFIX }}changelog
|
569 | 568 | path: CHANGELOG.txt
|
570 | 569 |
|
| 570 | + - name: Upload changelog artifact |
| 571 | + if: needs.build-type-determination.outputs.is-nightly == 'true' |
| 572 | + uses: actions/upload-artifact@v4 |
| 573 | + with: |
| 574 | + name: changelog |
| 575 | + path: CHANGELOG.txt |
| 576 | + |
571 | 577 | publish:
|
572 | 578 | needs:
|
573 | 579 | - build-type-determination
|
@@ -596,6 +602,9 @@ jobs:
|
596 | 602 | path: ${{ env.ARTIFACTS_FOLDER }}
|
597 | 603 | pattern: ${{ env.JOB_TRANSFER_ARTIFACT_PREFIX }}*
|
598 | 604 |
|
| 605 | + - run: | |
| 606 | + ls -lAR "${{ env.ARTIFACTS_FOLDER }}" |
| 607 | +
|
599 | 608 | - name: Publish Nightly [S3]
|
600 | 609 | uses: docker://plugins/s3
|
601 | 610 | env:
|
@@ -633,6 +642,9 @@ jobs:
|
633 | 642 | path: ${{ env.ARTIFACTS_FOLDER }}
|
634 | 643 | pattern: ${{ env.JOB_TRANSFER_ARTIFACT_PREFIX }}*
|
635 | 644 |
|
| 645 | + - run: | |
| 646 | + ls -lAR "${{ env.ARTIFACTS_FOLDER }}" |
| 647 | +
|
636 | 648 | - name: Get Tag
|
637 | 649 | id: tag_name
|
638 | 650 | run: |
|
|
0 commit comments