fix(blog): decrease title font sizes on mobile to match Pixel website #50
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
# push site to dev server on dev commit/merge | |
on: | |
push: | |
branches: | |
- dev | |
name: Deploy website (dev) over SFTP | |
jobs: | |
deploy_job: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Deploy file(s) | |
uses: wlixcc/SFTP-Deploy-Action@v1.2.4 | |
with: | |
server: ${{ secrets.sftp_server }} | |
username: ${{ secrets.sftp_username }} | |
password: ${{ secrets.sftp_password }} | |
port: 22 | |
local_path: './*' | |
remote_path: ${{ secrets.sftp_remote_path_dev }} | |
- name: Deploy file(s) | |
uses: wlixcc/SFTP-Deploy-Action@v1.2.4 | |
with: | |
server: ${{ secrets.sftp_server }} | |
username: ${{ secrets.sftp_username }} | |
password: ${{ secrets.sftp_password }} | |
port: 22 | |
local_path: './*' | |
remote_path: ${{ secrets.sftp_remote_path_dev }} |