From 9843891ddf6f425b986deaef8d72904e86035fa7 Mon Sep 17 00:00:00 2001 From: Geoff Lamperd Date: Tue, 4 Jun 2024 14:11:13 +1000 Subject: [PATCH 1/3] fixes syntax --- packages/actions/src/helpers/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/actions/src/helpers/constants.ts b/packages/actions/src/helpers/constants.ts index 786f3035..967b0b52 100644 --- a/packages/actions/src/helpers/constants.ts +++ b/packages/actions/src/helpers/constants.ts @@ -183,7 +183,7 @@ export const powersOfTauFiles = [ { ref: "https://pse-trusted-setup-ppot.s3.eu-central-1.amazonaws.com/pot28_0080/ppot_0080_27.ptau", size: 144.0 - } + }, { ref: "https://pse-trusted-setup-ppot.s3.eu-central-1.amazonaws.com/pot28_0080/ppot_0080_final.ptau", size: 288.0 From d7602c6cc2e43d313348818ce5a60f24e5b44f38 Mon Sep 17 00:00:00 2001 From: Geoff Lamperd Date: Thu, 6 Jun 2024 12:18:47 +1000 Subject: [PATCH 2/3] switch action to docker --- .github/workflows/firebase-deploy-dev.yaml | 2 +- packages/phase2cli/.gitignore | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/firebase-deploy-dev.yaml b/.github/workflows/firebase-deploy-dev.yaml index 0903cf20..f0233f99 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/packages/phase2cli/.gitignore b/packages/phase2cli/.gitignore index a4a65418..baf8a15f 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/ From 7827c85f70861d5262eeda2f71325dd7b23efc2d Mon Sep 17 00:00:00 2001 From: Geoff Lamperd Date: Thu, 6 Jun 2024 14:03:16 +1000 Subject: [PATCH 3/3] switch to docker in staging and prod --- .github/workflows/firebase-deploy-production.yaml | 2 +- .github/workflows/firebase-deploy-staging.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/firebase-deploy-production.yaml b/.github/workflows/firebase-deploy-production.yaml index 4f163994..8c41996a 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 ca54433e..dd62398b 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: