From c61938d99f18424cef3ea9c4fbbb7c5cb4141f58 Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Tue, 14 Sep 2021 13:56:40 -0400 Subject: [PATCH] Push repo to beta.charm.sh --- .github/workflows/soft-serve.yml | 36 ++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/soft-serve.yml diff --git a/.github/workflows/soft-serve.yml b/.github/workflows/soft-serve.yml new file mode 100644 index 000000000..153dda9d1 --- /dev/null +++ b/.github/workflows/soft-serve.yml @@ -0,0 +1,36 @@ +name: Soft-Serve + +on: + push: + branches: + - main + +jobs: + softserve: + runs-on: ubuntu-latest + env: + CHARM_SOFT_SERVE_KEY: "${{ secrets.CHARM_SOFT_SERVE_KEY }}" + SERVER: beta.charm.sh + SSH_AUTH_SOCK: /tmp/ssh_agent.sock + PUSH_TO: "soft-serve" + + steps: + - name: Checkout code + uses: actions/checkout@v2 + with: + fetch-depth: 0 + + - name: Push to Soft-Serve + run: | + # Add ssh key + mkdir -p ~/.ssh + ssh-keyscan $SERVER >> ~/.ssh/known_hosts + echo "$CHARM_SOFT_SERVE_KEY" > ~/.ssh/charm_soft_serve_id_rsa + chmod 0600 ~/.ssh/charm_soft_serve_id_rsa + eval "$(ssh-agent -a $SSH_AUTH_SOCK)" + ssh-add ~/.ssh/charm_soft_serve_id_rsa + # Add remote + git remote add soft-serve ssh://$SERVER/$PUSH_TO + # Push to soft-serve + git push -f soft-serve HEAD:master + rm -rf ~/.ssh/charm_soft_serve_id_rsa