Skip to content

Commit

Permalink
Fix: automatic deployment workflow _first_
Browse files Browse the repository at this point in the history
  • Loading branch information
Casm101 committed Dec 1, 2023
1 parent f6e4019 commit ad9dbac
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 17 deletions.
55 changes: 38 additions & 17 deletions .github/workflows/buildAndDeploy.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,49 @@
# Simple workflow for deploying static content to GitHub Pages
name: Build and Deploy

on:
# Runs on pushes targeting the default branch
push:
branches: [main]
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets the GITHUB_TOKEN permissions to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true

jobs:
build-and-deploy:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v1
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: "18"

- name: Install Dependencies
node-version: 18
cache: "npm"
- name: Install dependencies
run: npm install

- name: Run Build
- name: Build
run: npm run build

- name: Run Deploy
run: npm run deploy
env:
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: "./dist"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18

0 comments on commit ad9dbac

Please sign in to comment.