chore(ci): prepare fhevm smart contract image build #1
This file contains 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: 'fhEVM smart contracts Pipeline Run' | |
on: | |
push: | |
branches: ['test-sc'] | |
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-dev: '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 | |