Skip to content

Commit

Permalink
Merge branch 'tomas/trigger-test-sync-3' (#2537)
Browse files Browse the repository at this point in the history
* tomas/trigger-test-sync-3:
  gh/action/triggerable_sync: fix var syntax
  • Loading branch information
tzemanovic committed Feb 6, 2024
2 parents f76305e + 91bfcf0 commit 47aa3b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/triggerable_sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
BUCKET_NAME: namada-binaries
AWS_REGION: us-east-1
S3_ENDPOINT_URL: https://minio.heliax.click
ZIP_FILENAME: binaries-{{ $env.COMMIT_SHA }}.zip
ZIP_FILENAME: "binaries-${{ env.COMMIT_SHA }}.zip"
AWS_ACCESS_KEY_ID: ${{ secrets.MINIO_ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.MINIO_SECRET_KEY }}
- name: Run the test
Expand All @@ -106,7 +106,7 @@ jobs:
if: success() || failure()
uses: actions/upload-artifact@v3
with:
name: logs-sync-{{ $env.COMMIT_SHA }}
name: logs-sync-${{ env.COMMIT_SHA }}
path: |
/tmp/.*/logs/
/tmp/.*/setup/validator-*/logs/
Expand Down

0 comments on commit 47aa3b1

Please sign in to comment.