Skip to content

Commit

Permalink
Update actions.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dpolugic authored Apr 1, 2024
1 parent 8ba9e91 commit bd06a63
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# This is a basic workflow to help you get started with Actions
name: Build project and deploy to GitHub Pages

name: CI

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
Expand All @@ -13,6 +10,11 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

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

jobs:
build:
# The type of runner that the job will run on
Expand Down Expand Up @@ -53,6 +55,9 @@ jobs:
- name: Build project
run: pnpm build

- name: Setup Pages
uses: actions/configure-pages@v4

# Upload build artifacts.
- uses: actions/upload-pages-artifact@v3
with:
Expand Down

0 comments on commit bd06a63

Please sign in to comment.