diff --git a/.github/workflows/firebase-deploy-dev.yaml b/.github/workflows/firebase-deploy-dev.yaml index 0903cf2..f0233f9 100644 --- a/.github/workflows/firebase-deploy-dev.yaml +++ b/.github/workflows/firebase-deploy-dev.yaml @@ -66,7 +66,7 @@ jobs: run: sudo sed -i '54 s/^/#/' /usr/lib/ssl/openssl.cnf - name: Deploy to Firebase - uses: w9jds/firebase-action@master + uses: docker://w9jds/firebase-action:master with: args: deploy --only functions --project ${{ inputs.firebase_project }} env: diff --git a/.github/workflows/firebase-deploy-production.yaml b/.github/workflows/firebase-deploy-production.yaml index 4f16399..8c41996 100644 --- a/.github/workflows/firebase-deploy-production.yaml +++ b/.github/workflows/firebase-deploy-production.yaml @@ -50,7 +50,7 @@ jobs: run: sudo sed -i '54 s/^/#/' /usr/lib/ssl/openssl.cnf - name: Deploy to Firebase - uses: w9jds/firebase-action@master + uses: docker://w9jds/firebase-action:master with: args: deploy --only functions --project ${{ inputs.firebase_project }} env: diff --git a/.github/workflows/firebase-deploy-staging.yaml b/.github/workflows/firebase-deploy-staging.yaml index ca54433..dd62398 100644 --- a/.github/workflows/firebase-deploy-staging.yaml +++ b/.github/workflows/firebase-deploy-staging.yaml @@ -63,7 +63,7 @@ jobs: run: sudo sed -i '54 s/^/#/' /usr/lib/ssl/openssl.cnf - name: Deploy to Firebase - uses: w9jds/firebase-action@master + uses: docker://w9jds/firebase-action:master with: args: deploy --only functions --project ${{ inputs.firebase_project }} env: diff --git a/lerna.json b/lerna.json index 2c33789..e02f240 100644 --- a/lerna.json +++ b/lerna.json @@ -3,7 +3,7 @@ "packages/*" ], "npmClient": "yarn", - "version": "1.2.3", + "version": "1.2.4", "changelogPreset": { "name": "conventionalcommits", "issuePrefixes": [ diff --git a/packages/actions/package.json b/packages/actions/package.json index 758752c..b8764cf 100644 --- a/packages/actions/package.json +++ b/packages/actions/package.json @@ -1,6 +1,6 @@ { "name": "@p0tion/actions", - "version": "1.2.0", + "version": "1.2.4", "description": "A set of actions and helpers for CLI commands", "repository": "git@github.com:privacy-scaling-explorations/p0tion.git", "homepage": "https://github.com/privacy-scaling-explorations/p0tion", diff --git a/packages/backend/package.json b/packages/backend/package.json index e9612dd..99ac273 100644 --- a/packages/backend/package.json +++ b/packages/backend/package.json @@ -1,6 +1,6 @@ { "name": "@p0tion/backend", - "version": "1.2.3", + "version": "1.2.4", "description": "MPC Phase 2 backend for Firebase services management", "repository": "git@github.com:privacy-scaling-explorations/p0tion.git", "homepage": "https://github.com/privacy-scaling-explorations/p0tion", diff --git a/packages/phase2cli/.gitignore b/packages/phase2cli/.gitignore index a4a6541..baf8a15 100644 --- a/packages/phase2cli/.gitignore +++ b/packages/phase2cli/.gitignore @@ -7,6 +7,8 @@ yarn-error.log # environment env.json .env +.env.prod +.env.test # build dist/ diff --git a/packages/phase2cli/CHANGELOG.md b/packages/phase2cli/CHANGELOG.md index 3e12a6b..7db3968 100644 --- a/packages/phase2cli/CHANGELOG.md +++ b/packages/phase2cli/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.4](https://github.com/privacy-scaling-explorations/p0tion/compare/v1.2.3...v1.2.2) (2024-07-06) + + +### Features + +* Setup will pull phase 1 files from the latest PPoT set + + ## [1.2.3](https://github.com/privacy-scaling-explorations/p0tion/compare/v1.2.2...v1.2.3) (2024-04-10) diff --git a/packages/phase2cli/package.json b/packages/phase2cli/package.json index 0e9ce60..e9e09b7 100644 --- a/packages/phase2cli/package.json +++ b/packages/phase2cli/package.json @@ -1,7 +1,7 @@ { "name": "@p0tion/phase2cli", "type": "module", - "version": "1.2.3", + "version": "1.2.4", "description": "All-in-one interactive command-line for interfacing with zkSNARK Phase 2 Trusted Setup ceremonies", "repository": "git@github.com:privacy-scaling-explorations/p0tion.git", "homepage": "https://github.com/privacy-scaling-explorations/p0tion",