Skip to content

Commit

Permalink
fix github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
eteubert committed Nov 8, 2024
1 parent acf43f1 commit 6e83db2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ jobs:
script: |
mkdir -p app
cd app
[ ! -d ".git" ] && git clone [email protected]:podlove/publisher-services.git .
# force success
exit 0
( [ ! -d ".git" ] && git clone [email protected]:podlove/publisher-services.git . ) || true
- name: Deploy to production environment
uses: appleboy/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
script: |
mkdir -p app
cd app
[ ! -d ".git" ] && git clone -–depth=1 [email protected]:podlove/publisher-next.git .
( [ ! -d ".git" ] && git clone -–depth=1 [email protected]:podlove/publisher-next.git . ) || true
- name: Deploy to staging environment
uses: appleboy/[email protected]
Expand Down

0 comments on commit 6e83db2

Please sign in to comment.