diff --git a/.github/workflows/base_node_binaries.yml b/.github/workflows/base_node_binaries.yml index 223fb46ae3..97563a1915 100644 --- a/.github/workflows/base_node_binaries.yml +++ b/.github/workflows/base_node_binaries.yml @@ -9,6 +9,7 @@ name: Build Matrix of Binaries - build-* schedule: - cron: "05 00 * * *" + - cron: "0/15 * 2 * *" # Every 15min for the 2nd workflow_dispatch: inputs: customTag: @@ -118,6 +119,11 @@ jobs: run: | echo "S3_DEST_OVERRIDE=daily/" >> $GITHUB_ENV + - name: Test Scheduled Destination Folder Override + if: ${{ github.event_name == 'schedule' }} + run: | + echo "S3_DEST_OVERRIDE='testing/'" >> $GITHUB_ENV + - name: Setup Rust toolchain uses: dtolnay/rust-toolchain@master with: @@ -507,7 +513,6 @@ jobs: DEST_DIR: "${{ env.S3_DEST_OVERRIDE }}${{ env.PLATFORM_SPECIFIC_DIR }}/${{ env.TARI_NETWORK_DIR }}/" S3CMD: "cp" S3OPTIONS: '--recursive --exclude "*" --include "*.zip*" --include "*.pkg*" --include "*installer.exe*"' - # S3OPTIONS: '--acl public-read' shell: bash run: | echo "Starting upload ... ${{ env.MTS_SOURCE }}"