diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml new file mode 100644 index 0000000..9f7a713 --- /dev/null +++ b/.github/workflows/master.yml @@ -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/FTP-Deploy-Action@4.3.3 + with: + server: ftp.borishrncic.com + username: ${{ secrets.ftp_username }} + password: ${{ secrets.ftp_password }} \ No newline at end of file diff --git a/.github/workflows/staging.yml b/.github/workflows/staging.yml new file mode 100644 index 0000000..5e34876 --- /dev/null +++ b/.github/workflows/staging.yml @@ -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/FTP-Deploy-Action@4.3.3 + with: + server: ftp.borishrncic.com + username: ${{ secrets.ftp_stg_username }} + password: ${{ secrets.ftp_stg_password }} \ No newline at end of file diff --git a/app/.DS_Store b/app/.DS_Store index 651b6c4..7d6ef86 100644 Binary files a/app/.DS_Store and b/app/.DS_Store differ