-
Notifications
You must be signed in to change notification settings - Fork 1
43 lines (39 loc) · 1.11 KB
/
fhevm-smart-contracts.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: "fhEVM smart contracts Docker Image"
on:
push:
branches: ["amina/fhevm-sc-workflows"]
workflow_dispatch:
inputs:
image_tag:
description: 'Image (to be built/pushed) tag (default: latest)'
default: "latest"
type: string
required: 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-contracts"
image-dev-name: "fhevm-contracts-dev"
generate-dev-image: true
docker-file: "ci.dockerfile"
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