diff --git a/.github/workflows/porter_stack_this-is-a-test.yml b/.github/workflows/porter_stack_this-is-a-test.yml new file mode 100644 index 0000000..15185a4 --- /dev/null +++ b/.github/workflows/porter_stack_this-is-a-test.yml @@ -0,0 +1,26 @@ +"on": + push: + branches: + - master +name: Deploy to Porter +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: "1" + PORTER_HOST: https://296e-160-72-72-58.ngrok-free.app + PORTER_PROJECT: "1" + PORTER_STACK_NAME: this-is-a-test + PORTER_TAG: ${{ steps.vars.outputs.sha_short }} + PORTER_TOKEN: ${{ secrets.PORTER_STACK_1_1 }}