File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed
Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Main workflow
2+
3+ on :
4+ push :
5+ branches :
6+ - fix/update-dockerfile
7+
8+ jobs :
9+ build-and-push :
10+ uses : propeller-heads/ci-cd-templates/.github/workflows/build-and-push-docker-image.yaml@main
11+ permissions :
12+ id-token : write
13+ contents : read
14+ with :
15+ image_tag : ${{ needs.release.outputs.next_release_version }}
16+ image_name : tycho-indexer
17+ secrets :
18+ app_id : ${{ secrets.APP_ID }}
19+ app_private_key : ${{ secrets.APP_PRIVATE_KEY }}
20+ role_to_assume : ${{ secrets.ROLE_TO_ASSUME }}
21+ aws_region : ${{ secrets.AWS_REGION }}
22+ repository_url : ${{ secrets.REPOSITORY_URL }}
23+ domain_owner : ${{ secrets.DOMAIN_OWNER }}
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ RUN cargo install cargo-workspaces
1313RUN cargo install cargo-chef
1414COPY rust-toolchain.toml .
1515RUN rustup update 1.81
16+ RUN rustup set profile minimal && rustup install stable
1617
1718FROM chef AS planner
1819COPY . .
You can’t perform that action at this time.
0 commit comments