Skip to content

Commit

Permalink
testing runner
Browse files Browse the repository at this point in the history
  • Loading branch information
mdr223 committed Aug 11, 2023
1 parent 38595ce commit 37a97bd
Showing 1 changed file with 20 additions and 12 deletions.
32 changes: 20 additions & 12 deletions .github/workflows/ci-cd.yaml
Original file line number Diff line number Diff line change
@@ -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/[email protected]
# 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 }}."

0 comments on commit 37a97bd

Please sign in to comment.