Skip to content

Commit

Permalink
testing 18F deploy action
Browse files Browse the repository at this point in the history
comments out path while testing
  • Loading branch information
jduss4 committed Mar 5, 2024
1 parent 8aaf06f commit f9df367
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy-cloud-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on:
push:
# using current branch to test
branches: [ jvd/next-deploy ]
paths:
- 'nextjs/nextjs-site/**'
# paths:
# - 'nextjs/nextjs-site/**'

jobs:
build:
Expand Down Expand Up @@ -37,7 +37,7 @@ jobs:
uses: 18F/cg-deploy-action@main
with:
app_directory: './nextjs/nextjs-site'
cf_org: ${{ env.CF_ORG }}
cf_space: ${{ env.CF_SPACE }}
cf_org: ${{ vars.CF_ORG }}
cf_space: ${{ vars.CF_SPACE }}
cf_username: ${{ secrets.CF_USERNAME }}
cf_password: ${{ secrets.CF_PASSWORD }}
2 changes: 1 addition & 1 deletion nextjs/nextjs-site/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = {
dirs: ['api', 'app', 'pages', '__tests__', 'middleware.js']
},
generateBuildId: async () => {
// placeholder during development
// placeholder build id for development
return "0.0.1";
}
}

0 comments on commit f9df367

Please sign in to comment.