update ci
This commit is contained in:
parent
f483a81b42
commit
3a12106b6e
|
|
@ -7,9 +7,10 @@ build-dev:
|
||||||
when: on_success
|
when: on_success
|
||||||
only:
|
only:
|
||||||
- main
|
- main
|
||||||
image: docker:stable
|
image:
|
||||||
|
name: docker:25.0.3-cli
|
||||||
services:
|
services:
|
||||||
- name: docker:dind
|
- name: docker:25.0.3-dind
|
||||||
command: ["--insecure-registry=103.82.242.92:8900"]
|
command: ["--insecure-registry=103.82.242.92:8900"]
|
||||||
script:
|
script:
|
||||||
- docker logout
|
- docker logout
|
||||||
|
|
@ -26,4 +27,4 @@ auto-deploy:
|
||||||
services:
|
services:
|
||||||
- docker:dind
|
- docker:dind
|
||||||
script:
|
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 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 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() {
|
export default function Home() {
|
||||||
return (
|
return (
|
||||||
|
|
@ -10,10 +13,12 @@ export default function Home() {
|
||||||
<Navbar />
|
<Navbar />
|
||||||
<div className="flex-1">
|
<div className="flex-1">
|
||||||
<Header />
|
<Header />
|
||||||
<BreakingNews />
|
|
||||||
|
|
||||||
{/* <News /> */}
|
|
||||||
</div>
|
</div>
|
||||||
|
<LatestNews />
|
||||||
|
<Development />
|
||||||
|
<OpinionNews />
|
||||||
|
<Health />
|
||||||
|
<YouTubeSection />
|
||||||
<Footer />
|
<Footer />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue