Skip to content

Fix workflow

Fix workflow #4

Workflow file for this run

name: Deploy to GitHub Pages on merge Master
on:
push:
branches:
- master
jobs:
deploy:
permissions: write-all
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "18"
# - name: Obtain GitHub App Installation Access Token
# id: githubAppAuth
# run: |
# TOKEN="$(npx obtain-github-app-installation-access-token ci ${{ secrets.GH_APP_CREDENTIALS_TOKEN_JWT }})"
# echo "::add-mask::$TOKEN"
# echo "::set-output name=token::$TOKEN"
# - name: Use the obtained token
# id: tokenEnv
# run: |
# curl -X POST -H 'Content-Type: application/json' \
# -d '{"context":"test","state":"success"}' \
# "https://api.github.com/repos/$GITHUB_REPOSITORY/statuses/$GITHUB_SHA?access_token=$GITHUB_TOKEN"
# - name: Setup Auth ENV
# env:
# email: "developers@squidit.com.br"
# username: "squidit"
# run: |
# git config --global credential.helper store
# echo "https://${{ steps.githubAppAuth.outputs.token }}:x-oauth-basic@github.com" > ~/.git-credentials
# git config --global user.email $email
# git config --global user.name $username
# - name: Deploy to gh-pages
# run: |
# npm install
# npm run dist
# cp -r dist/css src/docs/public
# cp -r dist/js src/docs/public
# cd src/docs
# npm install
# NODE_ENV=production npm run build
# cd ../..
# echo "css.squidit.com.br" > CNAME
# cd docs
# echo "css.squidit.com.br" > CNAME
# cd ..
# git init
# git add -A
# git commit -m "🚀 Deploy id ${GITHUB_RUN_ID}" --no-verify
# git push -f "https://github.com/${GITHUB_REPOSITORY}.git" HEAD:gh-pages