-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: cleanup github actions to be more standard + add action for poh…
…-verifier
- Loading branch information
1 parent
e4f7688
commit 7a1eddb
Showing
5 changed files
with
86 additions
and
18 deletions.
There are no files selected for viewing
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: "Build and Publish PoH Verifier API" | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "packages/poh-verifier/**" | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- "packages/poh-verifier/**" | ||
release: | ||
types: | ||
- released | ||
|
||
jobs: | ||
poh-verifier-build-publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set Docker Tag | ||
id: docker-tag | ||
if: ${{ github.event_name != 'release' }} | ||
run: | | ||
echo "DOCKER_TAG=${GITHUB_SHA:0:7}-$(date +%s)" >> $GITHUB_ENV | ||
- name: Set Docker Tag - Release | ||
id: docker-tag-release | ||
if: ${{ github.event_name == 'release' }} | ||
run: | | ||
echo "DOCKER_TAG=${GITHUB_SHA:0:7}-$(date +%s)-${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV | ||
- name: Login to Docker Repository | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_REPO_USER }} | ||
password: ${{ secrets.DOCKER_REPO_TOKEN }} | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Docker Image Build and Publish | ||
env: | ||
SIGNER_PRIVATE_KEY: ${{ secrets.POH_VERIFIER_PRIVATE_KEY }} | ||
uses: docker/build-push-action@v4 | ||
with: | ||
build-args: | | ||
ENV_FILE=.env.production | ||
context: ./packages/poh-verifier | ||
file: ./packages/poh-verifier/Dockerfile | ||
push: true | ||
tags: consensys/poh-verifier:${{ env.DOCKER_TAG }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Env | ||
NODE_ENV=development | ||
PORT=3000 | ||
|
||
# Signer | ||
VERIFIER_CONTRACT_ADDRESS=0xa904d832aBEBb150acde3Aa520cAC39B0970AF1b | ||
|
||
# Poh API | ||
POH_API_URL=https://linea-xp-poh-api.linea.build | ||
|
||
CHAIN_ID=11155111 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM node:18 | ||
|
||
WORKDIR /app | ||
|
||
ARG ENV_FILE | ||
|
||
COPY . . | ||
|
||
COPY $ENV_FILE .env | ||
|
||
RUN npm install | ||
RUN npm run build | ||
|
||
EXPOSE 3000 | ||
|
||
CMD ["npm", "start"] |