Skip to content

Commit

Permalink
Create ftp.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
alicolville committed Sep 11, 2024
1 parent 27691a0 commit 1b75825
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ftp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: ftp-deploy
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run zipit action
uses: Neeraj319/zipit-action@main # use the latest tag
with:
zip-file-name: "weight-tracker-latest.zip"
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
url: ${{ secrets.FTP_URL }}
upload-file-filed-name: "weight-tracker-latest.zip"
query-params: "="

0 comments on commit 1b75825

Please sign in to comment.