From 802054985387e54dbd6cc745000807b44d58e7b1 Mon Sep 17 00:00:00 2001 From: Porter Support <93286801+portersupport@users.noreply.github.com> Date: Tue, 24 Jan 2023 15:46:13 -0500 Subject: [PATCH 01/10] Delete .env --- .env | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .env diff --git a/.env b/.env deleted file mode 100644 index 9940dd91..00000000 --- a/.env +++ /dev/null @@ -1 +0,0 @@ -SPONSOR=bed-is-all-my-pleasure \ No newline at end of file From 2bb5d8928a4e0049344dafedd69c314f81a62afb Mon Sep 17 00:00:00 2001 From: sunguroku <65516095+sunguroku@users.noreply.github.com> Date: Mon, 9 Oct 2023 12:30:14 -0400 Subject: [PATCH 02/10] Create Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/Dockerfile @@ -0,0 +1 @@ + From cfc489d312491ff48870e54a9da56696c3fb08ae Mon Sep 17 00:00:00 2001 From: "porter-deployment-app[bot]" <87230664+porter-deployment-app[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 16:36:19 +0000 Subject: [PATCH 03/10] Create porter_stack_testing.yml file --- .github/workflows/porter_stack_testing.yml | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/porter_stack_testing.yml diff --git a/.github/workflows/porter_stack_testing.yml b/.github/workflows/porter_stack_testing.yml new file mode 100644 index 00000000..23d6513a --- /dev/null +++ b/.github/workflows/porter_stack_testing.yml @@ -0,0 +1,26 @@ +"on": + push: + branches: + - again-again +name: Deploy to testing +jobs: + porter-deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + - name: Set Github tag + id: vars + run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT + - name: Deploy stack + timeout-minutes: 30 + uses: porter-dev/porter-cli-action@v0.1.0 + with: + command: apply -f ./porter.yaml + env: + PORTER_CLUSTER: "3081" + PORTER_HOST: https://dashboard.getporter.dev + PORTER_PROJECT: "8975" + PORTER_STACK_NAME: testing + PORTER_TAG: ${{ steps.vars.outputs.sha_short }} + PORTER_TOKEN: ${{ secrets.PORTER_STACK_8975_3081 }} From 9171beab44d52f60b3abb9a2162047e4e5a12a96 Mon Sep 17 00:00:00 2001 From: sunguroku <65516095+sunguroku@users.noreply.github.com> Date: Mon, 9 Oct 2023 12:39:52 -0400 Subject: [PATCH 04/10] Delete porter.yaml --- porter.yaml | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 porter.yaml diff --git a/porter.yaml b/porter.yaml deleted file mode 100644 index 9952f4bc..00000000 --- a/porter.yaml +++ /dev/null @@ -1,15 +0,0 @@ -version: v1 -resources: -- name: web - source: - name: web - config: - build: - method: pack - builder: heroku/buildpacks:20 - values: - ingress: - enabled: false - container: - command: node index.js - port: 3000 From 2b9d21135d5f8b7f3488eab4998e224cbd5c87bd Mon Sep 17 00:00:00 2001 From: "porter-deployment-app[bot]" <87230664+porter-deployment-app[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 16:41:55 +0000 Subject: [PATCH 05/10] Create porter_stack_again.yml file --- .github/workflows/porter_stack_again.yml | 26 ++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/porter_stack_again.yml diff --git a/.github/workflows/porter_stack_again.yml b/.github/workflows/porter_stack_again.yml new file mode 100644 index 00000000..5191c432 --- /dev/null +++ b/.github/workflows/porter_stack_again.yml @@ -0,0 +1,26 @@ +"on": + push: + branches: + - again-again +name: Deploy to again +jobs: + porter-deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + - name: Set Github tag + id: vars + run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT + - name: Deploy stack + timeout-minutes: 30 + uses: porter-dev/porter-cli-action@v0.1.0 + with: + command: apply -f ./porter.yaml + env: + PORTER_CLUSTER: "3081" + PORTER_HOST: https://dashboard.getporter.dev + PORTER_PROJECT: "8975" + PORTER_STACK_NAME: again + PORTER_TAG: ${{ steps.vars.outputs.sha_short }} + PORTER_TOKEN: ${{ secrets.PORTER_STACK_8975_3081 }} From 72f13562bf201fbcd3b204fb62c4618d2eea5ac4 Mon Sep 17 00:00:00 2001 From: sunguroku <65516095+sunguroku@users.noreply.github.com> Date: Mon, 9 Oct 2023 12:43:30 -0400 Subject: [PATCH 06/10] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8b137891..d2a626f5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1 +1 @@ - +FROM node:latest From 7b821de6aa82ab4d8dce8f7ffba5c656f1faed70 Mon Sep 17 00:00:00 2001 From: "porter-sandbox-deployment-app[bot]" <158510531+porter-sandbox-deployment-app[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 20:57:12 +0000 Subject: [PATCH 07/10] Create porter_stack_test.yml file --- .github/workflows/porter_stack_test.yml | 27 +++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/porter_stack_test.yml diff --git a/.github/workflows/porter_stack_test.yml b/.github/workflows/porter_stack_test.yml new file mode 100644 index 00000000..4db20f9f --- /dev/null +++ b/.github/workflows/porter_stack_test.yml @@ -0,0 +1,27 @@ +"on": + push: + branches: + - again-again +name: Deploy to test +jobs: + porter-deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + - name: Set Github tag + id: vars + run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT + - name: Setup porter + uses: porter-dev/setup-porter@v0.1.0 + - name: Deploy stack + timeout-minutes: 30 + run: exec porter apply -f ./porter.yaml + env: + PORTER_CLUSTER: "5" + PORTER_HOST: https://sandbox.porter.run + PORTER_PR_NUMBER: ${{ github.event.number }} + PORTER_PROJECT: "7" + PORTER_STACK_NAME: test + PORTER_TAG: ${{ steps.vars.outputs.sha_short }} + PORTER_TOKEN: ${{ secrets.PORTER_STACK_7_5 }} From a53f75f863c7d1c82e8eb3a831263ace33ccb7aa Mon Sep 17 00:00:00 2001 From: "porter-sandbox-deployment-app[bot]" <158510531+porter-sandbox-deployment-app[bot]@users.noreply.github.com> Date: Fri, 2 Feb 2024 19:26:08 +0000 Subject: [PATCH 08/10] Delete porter_stack_test.yml file --- .github/workflows/porter_stack_test.yml | 27 ------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/porter_stack_test.yml diff --git a/.github/workflows/porter_stack_test.yml b/.github/workflows/porter_stack_test.yml deleted file mode 100644 index 4db20f9f..00000000 --- a/.github/workflows/porter_stack_test.yml +++ /dev/null @@ -1,27 +0,0 @@ -"on": - push: - branches: - - again-again -name: Deploy to test -jobs: - porter-deploy: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v3 - - name: Set Github tag - id: vars - run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT - - name: Setup porter - uses: porter-dev/setup-porter@v0.1.0 - - name: Deploy stack - timeout-minutes: 30 - run: exec porter apply -f ./porter.yaml - env: - PORTER_CLUSTER: "5" - PORTER_HOST: https://sandbox.porter.run - PORTER_PR_NUMBER: ${{ github.event.number }} - PORTER_PROJECT: "7" - PORTER_STACK_NAME: test - PORTER_TAG: ${{ steps.vars.outputs.sha_short }} - PORTER_TOKEN: ${{ secrets.PORTER_STACK_7_5 }} From a5cbcd94b206e7e8a79bba7bbd7f63d0a3c19832 Mon Sep 17 00:00:00 2001 From: "porter-sandbox-deployment-app[bot]" <158510531+porter-sandbox-deployment-app[bot]@users.noreply.github.com> Date: Wed, 27 Mar 2024 17:15:21 +0000 Subject: [PATCH 09/10] Create porter_stack_test.yml file --- .github/workflows/porter_stack_test.yml | 27 +++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/porter_stack_test.yml diff --git a/.github/workflows/porter_stack_test.yml b/.github/workflows/porter_stack_test.yml new file mode 100644 index 00000000..5c6c8621 --- /dev/null +++ b/.github/workflows/porter_stack_test.yml @@ -0,0 +1,27 @@ +"on": + push: + branches: + - again-again +name: Deploy to test +jobs: + porter-deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + - name: Set Github tag + id: vars + run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT + - name: Setup porter + uses: porter-dev/setup-porter@v0.1.0 + - name: Deploy stack + timeout-minutes: 30 + run: exec porter apply + env: + PORTER_CLUSTER: "502" + PORTER_HOST: https://cloud.porter.run + PORTER_PR_NUMBER: ${{ github.event.number }} + PORTER_PROJECT: "504" + PORTER_STACK_NAME: test + PORTER_TAG: ${{ steps.vars.outputs.sha_short }} + PORTER_TOKEN: ${{ secrets.PORTER_STACK_504_502 }} From a58c0d4da2f5aa83685bbd39178cbccc89db9205 Mon Sep 17 00:00:00 2001 From: "porter-sandbox-deployment-app[bot]" <158510531+porter-sandbox-deployment-app[bot]@users.noreply.github.com> Date: Wed, 27 Mar 2024 17:39:20 +0000 Subject: [PATCH 10/10] Delete porter_stack_test.yml file --- .github/workflows/porter_stack_test.yml | 27 ------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/porter_stack_test.yml diff --git a/.github/workflows/porter_stack_test.yml b/.github/workflows/porter_stack_test.yml deleted file mode 100644 index 5c6c8621..00000000 --- a/.github/workflows/porter_stack_test.yml +++ /dev/null @@ -1,27 +0,0 @@ -"on": - push: - branches: - - again-again -name: Deploy to test -jobs: - porter-deploy: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v3 - - name: Set Github tag - id: vars - run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT - - name: Setup porter - uses: porter-dev/setup-porter@v0.1.0 - - name: Deploy stack - timeout-minutes: 30 - run: exec porter apply - env: - PORTER_CLUSTER: "502" - PORTER_HOST: https://cloud.porter.run - PORTER_PR_NUMBER: ${{ github.event.number }} - PORTER_PROJECT: "504" - PORTER_STACK_NAME: test - PORTER_TAG: ${{ steps.vars.outputs.sha_short }} - PORTER_TOKEN: ${{ secrets.PORTER_STACK_504_502 }}