From b99bc8e66cf85d2a9023312c01fd195306898926 Mon Sep 17 00:00:00 2001 From: lbajaj1 Date: Mon, 13 Apr 2026 22:25:55 +0530 Subject: [PATCH 1/3] Create blank.yml --- .github/workflows/blank.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/blank.yml diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml new file mode 100644 index 0000000..f3770b0 --- /dev/null +++ b/.github/workflows/blank.yml @@ -0,0 +1,36 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the "main" branch + push: + branches: [ "working" ] + pull_request: + branches: [ "working" ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v4 + + # Runs a single command using the runners shell + - name: Run a one-line script + run: echo Hello, world! + + # Runs a set of commands using the runners shell + - name: Run a multi-line script + run: | + echo Add other actions to build, + echo test, and deploy your project. From c016bbf1c749a1adc9930b2a3694873b847264d3 Mon Sep 17 00:00:00 2001 From: lbajaj1 Date: Mon, 13 Apr 2026 22:32:57 +0530 Subject: [PATCH 2/3] Update blank.yml --- .github/workflows/blank.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index f3770b0..04aa67b 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -9,7 +9,8 @@ on: branches: [ "working" ] pull_request: branches: [ "working" ] - +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true # Allows you to run this workflow manually from the Actions tab workflow_dispatch: From 1a1fb4019137c2f7aca2e9bab625b1055ef959d9 Mon Sep 17 00:00:00 2001 From: lalit bajaj Date: Tue, 14 Apr 2026 13:05:22 +0530 Subject: [PATCH 3/3] second pipeline --- .github/workflows/second.yml | 12 ++++++++++++ docker/app1-hello/springboot/hello-spring/Dockerfile | 5 +++++ 2 files changed, 17 insertions(+) create mode 100644 .github/workflows/second.yml create mode 100644 docker/app1-hello/springboot/hello-spring/Dockerfile diff --git a/.github/workflows/second.yml b/.github/workflows/second.yml new file mode 100644 index 0000000..241395a --- /dev/null +++ b/.github/workflows/second.yml @@ -0,0 +1,12 @@ +name: Second CI + +on: + push + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Say Hello + run: echo "Hello from the Second Workflow!" \ No newline at end of file diff --git a/docker/app1-hello/springboot/hello-spring/Dockerfile b/docker/app1-hello/springboot/hello-spring/Dockerfile new file mode 100644 index 0000000..8b6b2cb --- /dev/null +++ b/docker/app1-hello/springboot/hello-spring/Dockerfile @@ -0,0 +1,5 @@ +FROM eclipse-temurin:21-jdk +WORKDIR /app +COPY target/*.jar app.jar +EXPOSE 8080 +CMD ["java","-jar","app.jar"]