diff --git a/.github/workflows/porter_stack_rubysay.yml b/.github/workflows/porter_stack_rubysay.yml new file mode 100644 index 0000000..22d7ec0 --- /dev/null +++ b/.github/workflows/porter_stack_rubysay.yml @@ -0,0 +1,26 @@ +"on": + push: + branches: + - no-procfile +name: Deploy to rubysay +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: "2" + PORTER_HOST: https://newt-worthy-gazelle.ngrok-free.app + PORTER_PROJECT: "1" + PORTER_STACK_NAME: rubysay + PORTER_TAG: ${{ steps.vars.outputs.sha_short }} + PORTER_TOKEN: ${{ secrets.PORTER_STACK_1_2 }}