Skip to content

Commit

Permalink
added workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
peni4142 committed Dec 12, 2023
1 parent 5cb30f1 commit 3fc0c03
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Typo3_Extension

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
deploy:
runs-on: ubuntu-latest
env:
CI: false

steps:

- name: deploy extension to production server
uses: peni4142/typo3-scp-deployment@main
with:
host: ${{ secrets.TYPO3_SERVER_HOST }}
user_name: ${{ secrets.TYPO3_SERVER_USERNAME }}
user_password: ${{ secrets.TYPO3_SERVER_PASSWORD }}
target_path: ${{ vars.EXTENSION_PATH }}

0 comments on commit 3fc0c03

Please sign in to comment.