Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
DaevMithran committed Jan 31, 2023
2 parents 07d6629 + 6f7343d commit c09ad12
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 495 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
target: runner
tags: ${{ steps.meta.outputs.tags }}
cache-from: type=gha
cache-to: type=gha,mode=max
cache-to: type=gha,mode=min

- name: Save Docker image
run: docker save ${{ env.IMAGE_NAME }} > did-registrar-staging.tar
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: 'npm'
cache-dependency-path: '**/package-lock.json'

- name: "Obtain Github App token"
id: app-token
uses: getsentry/action-github-app-token@v1.0.6
uses: getsentry/action-github-app-token@v2.0.0
with:
app_id: ${{ secrets.BOT_APP_ID }}
private_key: ${{ secrets.BOT_APP_PRIVATE_KEY }}
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
cache-to: type=gha,mode=min

- name: Push image to DigitalOcean Container Registry
run: docker image push --all-tags ${{ env.IMAGE_NAME }}
run: docker image push --all-tags ${{ env.IMAGE_NAME }}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@

## [1.1.3-develop.1](https://github.com/cheqd/did-registrar/compare/1.1.2...1.1.3-develop.1) (2022-10-26)

## [1.1.5](https://github.com/cheqd/did-registrar/compare/1.1.4...1.1.5) (2022-11-29)

## [1.1.4](https://github.com/cheqd/did-registrar/compare/1.1.3...1.1.4) (2022-11-09)

## [1.1.3](https://github.com/cheqd/did-registrar/compare/1.1.2...1.1.3) (2022-11-03)

## [1.1.2](https://github.com/cheqd/did-registrar/compare/1.1.1...1.1.2) (2022-10-21)

## [1.1.1](https://github.com/cheqd/did-registrar/compare/1.1.0...1.1.1) (2022-10-20)
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
### STAGE 1: Build did-registrar app ###
###############################################################

FROM node:16-alpine AS builder
FROM node:18-alpine AS builder

# Set working directory & bash defaults
WORKDIR /home/node/app
Expand All @@ -20,7 +20,7 @@ RUN npm run build
### STAGE 2: Run did-registar app ###
###############################################################

FROM node:16-alpine AS runner
FROM node:18-alpine AS runner

# Set working directory & bash defaults
WORKDIR /home/node/app
Expand Down
5 changes: 3 additions & 2 deletions env.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
FEE_PAYER_ADDRESS=cheqd1ew***********u7tc98v
FEE_PAYER_MNEMONIC=<PUT YOUR MNEMONIC HERE>
FEE_PAYER_MAINNET_MNEMONIC=<PUT YOUR MNEMONIC HERE>
FEE_PAYER_TESTNET_MNEMONIC=<PUT YOUR MNEMONIC HERE>
PORT=3000
LOCAL_STORE_TTL=600
Loading

0 comments on commit c09ad12

Please sign in to comment.