Compare commits

...

13 Commits

Author SHA1 Message Date
Vivek Teega
8ce8e46239 test
Some checks failed
Pull changes and deploy API / Build (push) Has been cancelled
2023-12-18 20:06:33 +05:30
Vivek Teega
5cdf812539 Test 2023-12-18 19:51:10 +05:30
Vivek Teega
22f44d0ec2 test 2023-12-18 19:45:54 +05:30
Vivek Teega
e87c0a480f test 2023-12-18 19:38:10 +05:30
Vivek Teega
59ba9bb815 test 2023-12-18 19:35:55 +05:30
Vivek Teega
35f3e694c6 Test 2023-12-18 19:21:33 +05:30
Vivek Teega
d00cd300b3 test 2023-12-18 19:17:29 +05:30
Vivek Teega
44e9b72836 test 2023-12-18 19:15:26 +05:30
Vivek Teega
f008ed6efc Test 2023-12-18 19:10:03 +05:30
Vivek Teega
a5ac428a36 test 2023-12-18 19:07:16 +05:30
Vivek Teega
999332b1ae Test 2023-12-18 19:04:47 +05:30
Vivek Teega
ab67d08f53 test clone 2023-12-18 18:59:19 +05:30
ranchimalldev
21fb51b3eb
Update repopush.yml 2023-12-18 18:14:58 +05:30

View File

@ -1,18 +1,32 @@
# push contents of this repo to specified repo on github on commit name: Pull changes and deploy API
name: push this repo to bundle repo
on: [push] on: [push]
permissions:
contents: write
jobs: jobs:
build: build:
runs-on: ubuntu-latest name: Build
runs-on: self-hosted
steps: steps:
- uses: actions/checkout@v3 - name: Executing remote command
- name: push to bundle repo uses: appleboy/ssh-action@v1.0.0
uses: ad-m/github-push-action@master
with: with:
github_token: ${{ secrets.SM_ACCESS_TOKEN }} host: ${{ secrets.R_HOST }}
branch: master username: ${{ secrets.P_USERNAME }}
force: true password: ${{ secrets.P_PASSWORD }}
directory: . port: ${{ secrets.SSH_PORT }}
repository: ranchimall/dappbundle script: |
if [ -d "${{ secrets.DEPLOYMENT_LOCATION}}/dappbundle" ]; then
echo "Folder exists. Skipping Git clone."
else
echo "Folder does not exist. Cloning repository..."
cd ${{ secrets.DEPLOYMENT_LOCATION}}/ && git clone https://github.com/ranchimall/dappbundle.git
fi
if [ -d "${{ secrets.DEPLOYMENT_LOCATION}}/dappbundle/${{ github.event.repository.name }}" ]; then
echo "Repository exists. Remove folder "
rm -r "${{ secrets.DEPLOYMENT_LOCATION}}/dappbundle/${{ github.event.repository.name }}"
fi
echo "Cloning repository..."
cd ${{ secrets.DEPLOYMENT_LOCATION}}/dappbundle && git clone https://github.com/ranchimall/${{ github.event.repository.name }}
cd "${{ secrets.DEPLOYMENT_LOCATION}}/dappbundle/${{ github.event.repository.name }}" && rm -r .gitattributes
cd ${{ secrets.DEPLOYMENT_LOCATION}}/dappbundle/ && git add . && git commit -m "Workflow updating files of ${{ github.event.repository.name }}" && git push "https://ranchimalldev:${{ secrets.RM_ACCESS_TOKEN }}@github.com/ranchimall/dappbundle.git"