Skip to content

Commit

Permalink
Added CI
Browse files Browse the repository at this point in the history
  • Loading branch information
borishrncic committed Aug 22, 2023
1 parent 0c17d02 commit 8a0f87b
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
on:
push:
branches:
- master
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/[email protected]
with:
server: ftp.borishrncic.com
username: ${{ secrets.ftp_username }}
password: ${{ secrets.ftp_password }}
19 changes: 19 additions & 0 deletions .github/workflows/staging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
on:
push:
branches:
- staging
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/[email protected]
with:
server: ftp.borishrncic.com
username: ${{ secrets.ftp_stg_username }}
password: ${{ secrets.ftp_stg_password }}
Binary file modified app/.DS_Store
Binary file not shown.

0 comments on commit 8a0f87b

Please sign in to comment.