Skip to content

Commit

Permalink
Create deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacMilarky authored Sep 24, 2024
1 parent c54a010 commit 9cb208e
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: CICD

on:
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: pages
cancel-in-progress: false

jobs:
deploy:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
defaults:
run:
working-directory: ./app
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: "19.x"

- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.npm
key: npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
npm-
- name: Install dependencies
run: npm ci --prefer-offline --no-audit

- name: Build project
run: npm run build

- name: Setup GitHub pages
uses: actions/configure-pages@v5

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: app/dist

- name: Deploy to GitHub pages
uses: actions/deploy-pages@v4

0 comments on commit 9cb208e

Please sign in to comment.