Make the portable version of the update process independent. #776
This file contains 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 | |
workflow_call: | |
name: Upload | |
jobs: | |
upload: | |
name: Upload | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v2 | |
- name: Upload files | |
uses: SamKirkland/[email protected] | |
with: | |
server: ${{ secrets.FTP_ADDR }} | |
username: ${{ secrets.FTP_USER }} | |
password: ${{ secrets.FTP_PASS }} | |
exclude: | | |
**/.git* | |
**/.git*/** | |
LICENSE | |
README.md |