Skip to content
name: "fhEVM smart contracts Docker Image"
on:
push:
branches:
- main
paths:
- .github/workflows/fhevm-smart-contracts.yml
- .github/workflows/common-docker.yml
- contracts/**
release:
types:
- published
concurrency:
group: fhevm-smart-contracts-${{ github.ref_name }}
cancel-in-progress: false
jobs:
docker-smart-contracts:
uses: ./.github/workflows/common-docker.yml
permissions:
contents: "read"
id-token: "write"
packages: "write"
with:
working-directory: "."
push_image: true
image-name: "fhevm-smart-contracts"
image-dev-name: "fhevm-smart-contracts-dev"
generate-dev-image: true
docker-file: "contracts/operations/docker/ci.dockerfile"
docker-file-dev: "contracts/operations/docker/dev.dockerfile"
image-dev-description: "fhevm smart contracts dev image"
arm-build: true
secrets:
BLOCKCHAIN_ACTIONS_TOKEN: ${{ secrets.BLOCKCHAIN_ACTIONS_TOKEN }}
GRAVITON_BUILDER_SSH_PRIVATE_KEY: ${{ secrets.GRAVITON_BUILDER_SSH_PRIVATE_KEY }}
done:
runs-on: ubuntu-latest
name: Pipeline Done
steps:
- name: Success
run: echo Pipeline Done
needs:
- docker-smart-contracts