From eaef3695f6ba13a463d0ffc7291916160589d50b Mon Sep 17 00:00:00 2001 From: Bryan Clark Date: Tue, 7 May 2024 08:44:13 -0700 Subject: [PATCH] Updating the deploy-preview.yml Moving to use $GITHUB_ENV which should work for the migrate and deploy steps Dropping some of the top level env variables. Moved NEON_PROJECT_ID from secret to var --- .github/workflows/deploy-preview.yml | 38 +++++++++++----------------- 1 file changed, 15 insertions(+), 23 deletions(-) diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml index c8ab9e7..c78675e 100644 --- a/.github/workflows/deploy-preview.yml +++ b/.github/workflows/deploy-preview.yml @@ -2,11 +2,9 @@ name: Preview Deployment on: [pull_request] env: - NEON_DATABASE_USERNAME: ${{ secrets.NEON_DATABASE_USERNAME }} # change this to your database username - GH_TOKEN: ${{ secrets.GH_TOKEN }} # Required for commenting on pull requests for private repos - NEON_API_KEY: ${{ secrets.NEON_API_KEY }} # You can generate a an API key in your account settings - NEON_PROJECT_ID: ${{ secrets.NEON_PROJECT_ID }} # You can find this in your project settings + NEON_PROJECT_ID: ${{ var.NEON_PROJECT_ID }} # You can find this in your Neon project settings FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} # You can generate a Fly API token in your account settings + GH_TOKEN: ${{ secrets.GH_TOKEN }} # Required for commenting on pull requests for private repos jobs: deploy-preview: @@ -21,41 +19,35 @@ jobs: - uses: pnpm/action-setup@v2 with: version: 8 - - name: Use Node.js 18 - uses: actions/setup-node@v4 + - uses: actions/setup-node@v4 with: node-version: 18 cache: "pnpm" - - name: Install dependencies - run: pnpm install - - name: Get branch name + - run: pnpm install + + - name: Get cleaned up branch name id: branch-name uses: tj-actions/branch-names@v8 - - name: Create Neon Branch - id: create-branch + - id: create-branch uses: neondatabase/create-branch-action@v4 with: project_id: ${{ env.NEON_PROJECT_ID }} # parent: dev # optional (defaults to your primary branch) branch_name: preview/pr-${{ github.event.number }}-${{ steps.branch-name.outputs.current_branch }} - username: ${{ env.NEON_DATABASE_USERNAME }} - api_key: ${{ env.NEON_API_KEY }} - - - name: Run Migrations - run: | - touch .env + username: ${{ secrets.NEON_DATABASE_USERNAME }} # change to your Neon database username / role + api_key: ${{ secrets.NEON_API_KEY }} # Generate a an API key in your Neon account settings - echo DATABASE_URL=${{ steps.create-branch.outputs.db_url_with_pooler }}?sslmode=require >> .env + - run: | + echo "DATABASE_URL=${{ steps.create-branch.outputs.db_url_with_pooler }}?sslmode=require" >> "$GITHUB_ENV" - pnpm run db:migrate + - run: pnpm run db:migrate - - name: Deploy - id: deploy + - id: deploy uses: superfly/fly-pr-review-apps@1.2.0 with: - secrets: DATABASE_URL=${{ steps.create-branch.outputs.db_url }}?sslmode=require + secrets: DATABASE_URL=$DATABASE_URL - name: Comment on Pull Request uses: thollander/actions-comment-pull-request@v2 @@ -63,4 +55,4 @@ jobs: # GITHUB_TOKEN: ${{ env.GH_TOKEN }} # Required for commenting on pull requests for private repos message: | Fly Preview URL :balloon: : ${{ steps.deploy.outputs.url }} - Neon branch :elephant: : https://console.neon.tech/app/projects/${{ secrets.NEON_PROJECT_ID }}/branches/${{ steps.create-branch.outputs.branch_id }} + Neon branch :elephant: : https://console.neon.tech/app/projects/${{ env.NEON_PROJECT_ID }}/branches/${{ steps.create-branch.outputs.branch_id }}