Skip to content

Commit ff2412f

Browse files
authored
Merge pull request #19 from init4tech/swanny/cd
feat(cd): adding cd for smart contracts
2 parents e9abe3f + 4efb727 commit ff2412f

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed

.github/workflows/cd.yml

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
name: Release and Deploy Contract
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
workflow_dispatch:
8+
inputs:
9+
generate-tag:
10+
description: 'Generate a new tag'
11+
required: true
12+
default: 'true'
13+
custom-tag:
14+
description: 'Custom tag to be used if generate-tag is false'
15+
required: false
16+
default: ''
17+
network:
18+
description: 'Network to deploy contract to'
19+
required: true
20+
default: 'holesky'
21+
type: choice
22+
options:
23+
- holesky
24+
environment:
25+
description: 'Environment to deploy contract to'
26+
required: true
27+
default: 'dev'
28+
type: choice
29+
options:
30+
- dev
31+
32+
permissions:
33+
packages: write
34+
contents: write
35+
36+
jobs:
37+
auto-release:
38+
uses: init4tech/actions/.github/workflows/auto-release.yml@main
39+
with:
40+
generate-tag: true
41+
custom-tag: ${{ github.event.inputs.custom-tag }}
42+
deploy-contract:
43+
uses: init4tech/actions/.github/workflows/solidity-deployment.yml@main
44+
needs: auto-release
45+
with:
46+
network: ${{ github.event.inputs.network }}
47+
environment: ${{ github.event.inputs.environment }}
48+
forge-deployment-script: "DeployZenith"
49+
secrets:
50+
aws-deployer-role: ${{ secrets.AWS_DEPLOYER_ROLE }}
51+
holesky-kms-key-id: ${{ secrets.HOLESKY_DEPLOYER_KEY_ID }}
52+
holesky-rpc-url: ${{ secrets.HOLESKY_RPC_URL }}
53+
etherscan-api-key: ${{ secrets.ETHERSCAN_API_KEY }}

0 commit comments

Comments
 (0)