From b8611cc1a7e8f5512e586881c6f18c46ba0312c8 Mon Sep 17 00:00:00 2001 From: eynow Date: Mon, 6 Jan 2025 18:53:38 +0900 Subject: [PATCH 1/2] Create partNerd_deploy.yml --- .github/workflows/partNerd_deploy.yml | 35 +++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/partNerd_deploy.yml diff --git a/.github/workflows/partNerd_deploy.yml b/.github/workflows/partNerd_deploy.yml new file mode 100644 index 0000000..084bbae --- /dev/null +++ b/.github/workflows/partNerd_deploy.yml @@ -0,0 +1,35 @@ +# This is a basic workflow to help you get started with Actions +name: PartNerd FE DEV CICD + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the "main" branch + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + + # 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 a1a5d1190108868d0662ab7bd84728bf6023e8c9 Mon Sep 17 00:00:00 2001 From: name Date: Tue, 7 Jan 2025 10:32:01 +0900 Subject: [PATCH 2/2] Remove unnecessary workflow --- .github/workflows/partNerd_deploy.yml | 35 --------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/partNerd_deploy.yml diff --git a/.github/workflows/partNerd_deploy.yml b/.github/workflows/partNerd_deploy.yml deleted file mode 100644 index 084bbae..0000000 --- a/.github/workflows/partNerd_deploy.yml +++ /dev/null @@ -1,35 +0,0 @@ -# This is a basic workflow to help you get started with Actions -name: PartNerd FE DEV CICD - -# Controls when the workflow will run -on: - # Triggers the workflow on push or pull request events but only for the "main" branch - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - - # 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.