Update colonesexchangerate #28
Workflow file for this run
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 Website | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '.github/**' | |
- '.api/**' | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- '.github/**' | |
- '.api/**' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Out Repo | |
uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'latest' | |
- name: NPM Install Dependencies | |
run: npm ci | |
- name: NPM Build Docusaurus Website | |
run: npm run build | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: website | |
path: build | |
deploy-github-pages: | |
needs: build | |
environment: | |
name: GitHub-Pages | |
url: https://github.dsanchezcr.com | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download Artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: website | |
path: build | |
- name: Upload GitHub Page artifact | |
uses: actions/upload-pages-artifact@v2 | |
with: | |
path: 'build' | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v2 | |
deploy-azure: | |
runs-on: ubuntu-latest | |
needs: deploy-github-pages | |
if: github.ref == 'refs/heads/main' | |
environment: | |
name: Production | |
url: https://dsanchezcr.com | |
steps: | |
- name: Download Artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: website | |
path: build | |
- name: Deploy to Azure Static Web Apps | |
uses: azure/static-web-apps-deploy@v1 | |
with: | |
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN }} | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
action: 'upload' | |
app_location: 'build' | |
api_location: './api' | |
output_location: 'build' |