update ci
This commit is contained in:
parent
f483a81b42
commit
3a12106b6e
|
|
@ -7,9 +7,10 @@ build-dev:
|
|||
when: on_success
|
||||
only:
|
||||
- main
|
||||
image: docker:stable
|
||||
image:
|
||||
name: docker:25.0.3-cli
|
||||
services:
|
||||
- name: docker:dind
|
||||
- name: docker:25.0.3-dind
|
||||
command: ["--insecure-registry=103.82.242.92:8900"]
|
||||
script:
|
||||
- docker logout
|
||||
|
|
@ -26,4 +27,4 @@ auto-deploy:
|
|||
services:
|
||||
- docker:dind
|
||||
script:
|
||||
- curl --user admin:$JENKINS_PWD http://38.47.180.165:8080/job/auto-deploy-berita-bumn/build?token=autodeploymedols
|
||||
- curl --user admin:$JENKINS_PWD http://103.31.38.120:8080/job/auto-deploy-berita-bumn/build?token=autodeploymedols
|
||||
|
|
|
|||
17
app/page.tsx
17
app/page.tsx
|
|
@ -1,8 +1,11 @@
|
|||
import BreakingNews from "@/components/landing-page/breaking-news";
|
||||
import Development from "@/components/landing-page/development";
|
||||
import Footer from "@/components/landing-page/footer";
|
||||
import Header from "@/components/landing-page/headers";
|
||||
import Header from "@/components/landing-page/header";
|
||||
import Health from "@/components/landing-page/health";
|
||||
import LatestNews from "@/components/landing-page/latest-news";
|
||||
import Navbar from "@/components/landing-page/navbar";
|
||||
import Image from "next/image";
|
||||
import OpinionNews from "@/components/landing-page/opinion-news";
|
||||
import YouTubeSection from "@/components/landing-page/youtube-selection";
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
|
|
@ -10,10 +13,12 @@ export default function Home() {
|
|||
<Navbar />
|
||||
<div className="flex-1">
|
||||
<Header />
|
||||
<BreakingNews />
|
||||
|
||||
{/* <News /> */}
|
||||
</div>
|
||||
<LatestNews />
|
||||
<Development />
|
||||
<OpinionNews />
|
||||
<Health />
|
||||
<YouTubeSection />
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in New Issue