Skip to content

Commit

Permalink
fix: pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
petertonysmith94 committed Jan 9, 2024
1 parent 713f4ca commit f701b57
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,19 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: πŸ›ŽοΈ Checkout
uses: actions/checkout@v3

- name: πŸ—οΈ PNPM Setup
uses: ./.github/actions/pnpm-setup.yml

- name: Install Dependencies πŸ”§
- name: πŸ”§ Install Dependencies
run: pnpm install

- name: Build πŸ”¨
- name: πŸ”¨ Build
run: pnpm run build

- name: Upload Build Artifact πŸ“¦
- name: πŸ“¦ Upload Build Artifact
uses: actions/upload-artifact@v2
with:
name: "build-${{ github.ref }}"
Expand All @@ -38,16 +41,16 @@ jobs:
needs: [build]
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
- name: πŸ›ŽοΈ Checkout
uses: actions/checkout@v3

- name: Download Build Artifact πŸ“¦
- name: πŸ“¦ Download Build Artifact
uses: actions/download-artifact@v2
with:
name: "build-${{ github.ref }}"
path: build

- name: Publish our Build Artifacts πŸ”Ί
- name: πŸ”Ί Publish our Build Artifacts
uses: actions/upload-pages-artifact@v2
with:
name: github-pages
Expand Down

0 comments on commit f701b57

Please sign in to comment.