diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f196738..04441af 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,10 +13,10 @@ jobs: steps: - name: Checkout files uses: actions/checkout@v4 - - name: Use Node.js 12.10.0 + - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: - node-version: 12.10.0 + node-version: ${{ matrix.node-version }} cache: 'npm' - run: npm i && npm run build # now deploy to firebase @@ -25,5 +25,5 @@ jobs: with: repoToken: '${{ secrets.GITHUB_TOKEN }}' firebaseServiceAccount: '${{ secrets.FIREBASE_TOKEN }}' - projectId: lookingforcontributors + projectId: sharemytext channelId: live diff --git a/.github/workflows/pr-deploy.yml b/.github/workflows/pr-deploy.yml index ab12392..b46d6dc 100644 --- a/.github/workflows/pr-deploy.yml +++ b/.github/workflows/pr-deploy.yml @@ -9,10 +9,10 @@ jobs: steps: - name: Checkout files uses: actions/checkout@v4 - - name: Use Node.js 12.10.0 + - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: - node-version: 12.10.0 + node-version: ${{ matrix.node-version }} cache: 'npm' - run: npm i && npm run build # now deploy to firebase