-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'code100x:main' into bug-fix
- Loading branch information
Showing
38 changed files
with
1,842 additions
and
853 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Continuous Deployment | ||
on: | ||
push: | ||
branches: [ main ] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Docker login | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Build and push | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
file: ./Dockerfile.prod | ||
push: true | ||
tags: 100xdevs/cms-staging:${{ github.sha }} | ||
build-args: | | ||
DATABASE_URL=${{ secrets.STAGING_DATABASE }} | ||
- name: Clone staging-ops repo, update, and push | ||
env: | ||
PAT: ${{ secrets.PAT }} | ||
run: | | ||
git clone https://github.com/code100x/staging-ops.git | ||
cd staging-ops | ||
sed -i 's|image: 100xdevs/cms-staging:.*|image: 100xdevs/cms-staging:${{ github.sha }}|' staging/cms/deployment.yml | ||
git config user.name "GitHub Actions Bot" | ||
git config user.email "[email protected]" | ||
git add staging/cms/deployment.yml | ||
git commit -m "Update cms image to ${{ github.sha }}" | ||
git push https://${PAT}@github.com/code100x/staging-ops.git main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Continuous Deployment (Prod) | ||
on: | ||
push: | ||
branches: [ production ] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Docker login | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Build and push | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
file: ./Dockerfile.prod | ||
push: true | ||
tags: 100xdevs/cms:${{ github.sha }} | ||
build-args: | | ||
DATABASE_URL=${{ secrets.PROD_DATABASE }} | ||
- name: Clone staging-ops repo, update, and push | ||
env: | ||
PAT: ${{ secrets.PAT }} | ||
run: | | ||
git clone https://github.com/code100x/staging-ops.git | ||
cd staging-ops | ||
sed -i 's|image: 100xdevs/cms:.*|image: 100xdevs/cms:${{ github.sha }}|' prod/cms/deployment.yml | ||
git config user.name "GitHub Actions Bot" | ||
git config user.email "[email protected]" | ||
git add prod/cms/deployment.yml | ||
git commit -m "Update cms image to ${{ github.sha }}" | ||
git push https://${PAT}@github.com/code100x/staging-ops.git main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
'use server'; | ||
import db from '@/db'; | ||
// import db from '@/db'; | ||
|
||
export default async function VideoPreview({ | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
contentId, | ||
}: { | ||
contentId: number; | ||
}) { | ||
const videoMetadata = await db.videoMetadata.findFirst({ | ||
where: { contentId }, | ||
select: { video_360p_1: true }, | ||
}); | ||
// const videoMetadata = await db.videoMetadata.findFirst({ | ||
// where: { contentId }, | ||
// select: { video_360p_1: true }, | ||
// }); | ||
|
||
if (videoMetadata) { | ||
return videoMetadata.video_360p_1; | ||
} | ||
// if (videoMetadata) { | ||
// return videoMetadata.video_360p_1; | ||
// } | ||
return null; | ||
} |
Oops, something went wrong.