version bump to v0.7.1 #144
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-site | |
on: | |
push: | |
branches: [ main ] | |
release: | |
types: [released] | |
jobs: | |
setup-build-deploy: | |
name: Deploy Website | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install Dependencies | |
run: npm install | |
- name: Build | |
run: npm run build | |
- name: Build Website | |
run: npm run build-site | |
- name: Publish to Cloudflare Pages | |
uses: cloudflare/pages-action@1 | |
with: | |
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
accountId: b09b24c345713c704e71dea8bd81f713 | |
projectName: docula | |
directory: site-output | |
branch: main | |
gitHubToken: ${{ secrets.GH_TOKEN }} |