Created
November 10, 2023 06:03
SamkirLand Ftp Node
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
name: π Deploy website on push | |
jobs: | |
web-deploy: | |
name: π Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Get latest code | |
uses: actions/checkout@v2 | |
- name: π Sync files | |
uses: SamKirkland/FTP-Deploy-Action@4.3.2 | |
with: | |
server: ftpServerOrIpHere | |
username: ftpUserNameHere | |
password: ftpPasswordHere |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment