Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
AsteroidusTv committed Oct 11, 2024
2 parents ad9e107 + e2e1cf0 commit cfcbb2d
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: FTP Deployment

on:
push:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: FTP Deployment
uses: SamKirkland/FTP-Deploy-Action@v4.3.4
with:
server: ${{ secrets.FTP_SERVER }}
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
server-dir: "/www/recytech/"
local-dir: ./
dry-run: false
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ <h1 id="headerTitle" class="header-title">RecyTech</h1>
</header>
<main>
<section id="product" class="main-section product">
<h1 class="section-slogan">Transformer les vieux pc <br>en de nouvelles oportunitées.</h1>
<h1 class="section-slogan">Transformer les vieux PC en nouvelles opportunités.</h1>
<div class="section-buy">
<div class="buy-image-title">
<img class="buy-image" src="./imgs/template2.jpg" alt="template2">
Expand All @@ -43,4 +43,4 @@ <h1 class="buy-title">Lorem ipsum dolor sit amet consectetur.</h1>
<section id="contact" class="main-section contact"></section>
</main>
</body>
</html>
</html>

0 comments on commit cfcbb2d

Please sign in to comment.