chore(deps): bump sass from 1.76.0 to 1.77.0 (#415) #370
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: build and deploy artifact to gh-pages branch | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "20" | |
cache: "yarn" | |
- run: yarn install | |
- run: yarn run test | |
- run: yarn run generate | |
- name: create .well-known folder | |
run: mkdir -p ./dist/.well-known | |
- run: echo '${{ secrets.BRAVE_REWARDS_VERIFICATION }}' > ./dist/.well-known/brave-rewards-verification.txt | |
- run: echo '${{ secrets.GOOGLE_SITE_VERIFICATION_CONTENT }}' > './dist/${{ secrets.GOOGLE_SITE_VERIFICATION_FILE_NAME }}' | |
- name: deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./dist | |
cname: theshrine.pw | |
force_orphan: true | |
user_name: "github-actions[bot]" | |
user_email: "github-actions[bot]@users.noreply.github.com" |