From 37a97bd5eb38b2bf6e1b1921b7408db2f1f8742f Mon Sep 17 00:00:00 2001 From: mdr223 Date: Fri, 11 Aug 2023 12:39:14 -0400 Subject: [PATCH] testing runner --- .github/workflows/ci-cd.yaml | 32 ++++++++++++++++++++------------ 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci-cd.yaml b/.github/workflows/ci-cd.yaml index 89cd691..33ea807 100644 --- a/.github/workflows/ci-cd.yaml +++ b/.github/workflows/ci-cd.yaml @@ -1,19 +1,27 @@ -name: GitHub Actions Demo -run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 +name: Deploy A2rchi +run-name: ${{ github.actor }} deploys A2rchi on: [push] jobs: - Explore-GitHub-Actions: + deploy-dev-system: runs-on: ubuntu-latest steps: - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." - - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" - - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - - name: Check out repository code - uses: actions/checkout@v3 - - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - - run: echo "🖥️ The workflow is now ready to test your code on the runner." - - name: List files in the repository - run: | - ls ${{ github.workspace }} + - uses: actions/checkout@v3 + - run: echo "The ${{ github.repository }} repository has been cloned to the runner." + - run: | + ls ~ + ls ~/.ssh/ + cat ~/.ssh/config + # - run: | + # touch ~/.ssh/id_rsa_submit + # echo ${{ secrets.SSH_PRIVATE_KEY_MDRUSSO }} >> ~/.ssh/id_rsa_submit + + # - uses: webfactory/ssh-agent@v0.8.0 + # with: + # ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY_MDRUSSO }} + # - run: echo "🖥️ The workflow is now ready to test your code on the runner." + # - name: List files in the repository + # run: | + # ls ${{ github.workspace }} - run: echo "🍏 This job's status is ${{ job.status }}."