Switch to dynamic org to find the right .github repo #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Teranode base run | ||
|
Check failure on line 1 in .github/workflows/teranode_base_run.yaml
|
||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| permissions: | ||
| contents: read | ||
| pull-requests: read | ||
| id-token: write | ||
| jobs: | ||
| # Run remote build and deploy workflow | ||
| build-and-deploy: | ||
| uses: ${{ github.repository_owner }}/.github/.github/workflows/build_and_deploy.yaml@main | ||
| permissions: | ||
| contents: read | ||
| packages: write | ||
| id-token: write | ||
| secrets: inherit | ||
| with: | ||
| file: ./Dockerfile_run | ||
| image_prefix: "run-" | ||
| repository: ${{ github.repository }} | ||
| tag_latest: true | ||
| use_short_sha_tag: true | ||
| use_packages: true | ||
| use_ecr: true | ||
| create_manifest: true | ||
| ecr_region: "eu-north-1" | ||
| ecr_repo: "teranode-base" | ||
| architectures: '["amd64", "arm64"]' | ||
| runner_labels: '{"amd64":"linux-amd64","arm64":"linux-arm64","manifest":"ubuntu-latest"}' | ||
| build_args: | | ||
| GITHUB_SHA=${{ github.sha }} | ||
| GITHUB_REF=${{ github.ref_name }} | ||