make layer backgrounds black #33
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
name: deploy gh-pages | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
GHTOKEN: ${{ secrets.PUSH_TOKEN }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
with: | |
persist-credentials: false | |
- name: Setup git | |
run: | | |
git remote add mn https://thiagohersan:[email protected]/marinagem-www/infinitum.marinagem.com.git | |
git remote add th https://thiagohersan:[email protected]/thiagohersan-www/infinitum.thiagohersan.com.git | |
git config --local user.name "github-actions" | |
git config --local user.email "[email protected]" | |
git checkout --orphan gh-pages | |
git rm --cached -rf . &> /dev/null | |
echo "GITHUB_SHA_SHORT=$(echo $GITHUB_SHA | cut -c 1-6)" >> $GITHUB_ENV | |
- name: Deploy MN | |
run: | | |
echo "infinitum.marinagem.com" > CNAME | |
git add assets/ css/ js/ index.html CNAME | |
git commit -m "update site: $GITHUB_SHA_SHORT" &> /dev/null | |
git push mn :gh-pages | |
git push mn gh-pages | |
- name: Deploy TH | |
run: | | |
echo "infinitum.thiagohersan.com" > CNAME | |
sed -i -e 's/infinitum.marinagem.com/infinitum.thiagohersan.com/g' index.html | |
git add CNAME index.html | |
git commit -m "update site: $GITHUB_SHA_SHORT" &> /dev/null | |
git push th :gh-pages | |
git push th gh-pages |