diff --git a/.github/workflows/vercelPullRequest.yml b/.github/workflows/vercelPullRequest.yml index d3a55ce..def2aa8 100644 --- a/.github/workflows/vercelPullRequest.yml +++ b/.github/workflows/vercelPullRequest.yml @@ -1,4 +1,4 @@ -name: Create vercel preview URL on pull request +name: Deploy to vercel on PR on: pull_request: branches: @@ -8,8 +8,17 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + # To set more environment variables on the build, either use Vercel CLI or this: + # - uses: dkershner6/vercel-set-env-action@v1 + # with: + # token: ${{ secrets.VERCEL_TOKEN }} + # projectName: events-app + # envVariableKeys: SOME_VARIABLE + # env: + # SOME_VARIABLE: ${{ secrets.SOME_VARIABLE }} + # TARGET_SOME_VARIABLE: preview,development,production + # TYPE_SSOME_VARIABLE: encrypted - uses: amondnet/vercel-action@v20 - id: vercel-deploy with: vercel-token: ${{ secrets.VERCEL_TOKEN }} github-token: ${{ secrets.GITHUB_TOKEN }} @@ -17,4 +26,4 @@ jobs: vercel-project-id: ${{ secrets.PROJECT_ID}} - name: preview-url run: | - echo ${{ steps.vercel-deploy.outputs.preview-url }} \ No newline at end of file + echo ${{ steps.vercel-deploy.outputs.preview-url }} diff --git a/src/app/globals.css b/src/app/globals.css index 6aef8af..98fc810 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -2,6 +2,8 @@ @tailwind components; @tailwind utilities; + + @layer base { :root { --background: #201F31; @@ -71,4 +73,4 @@ input, button, textarea, select { font: inherit; -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index e4e3425..9b81a9c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,3 +7,5 @@ export default function Home() { ); } + +